Often times you might want to add the search functionality to your page without taking up too much space. A search icon in the menu is a nice way to do that. This is what mine looked like: Here’s how I did it: 1) Add this code to your functions.php file. (Please note- this only…
Read More
Limit or Disable Post Revisions
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.