Although I find the Revisions option helpful in the post editor, I certainly don’t need the last 50 versions of any given post. That can quickly bloat any database. Backing up your website can be tough with a huge database. Try using these snippets to either disable post revisions or limit them to five. (Note,…
Read More
To take out date & author for posts – out of functions.php (genesis themes)
// Remove the post info function remove_action('genesis_before_post_content', 'genesis_post_info'); // Remove the post meta function remove_action('genesis_after_post_content', 'genesis_post_meta'); The code above should be placed in the child theme’s functions.php file.