updated   : May 15, 2012
we now have 588 snippets
By : , on July 05, 2011 9:00 am

Remove favorites menu from admin using favorite_actions

wordpress snippet

Adding this snippet to the functions.php of your wordpress theme will remove the favorites menu from the wordpress admin.

read more
By : , on June 24, 2011 9:00 am

Remove shortcode from home but not single posts

wordpress snippet

Adding this snippet to the functions.php of your wordpress theme will strip shortcode from your home page / index but not from single or archives posts.

read more
By : , on June 07, 2011 9:00 am

Remove all images from the_content in a post

wordpress snippet

Adding this snippet to your wordpress template index.php replacing the default the_content(); will remove images from the post. This is a great snippet if you want to display a number of images on single.php but not on the main blog view. Keep in mind that this will not remove the captions so don’t insert the images with a caption or disable all captions.

read more
By : , on June 05, 2011 9:00 am

Remove links manager admin menu

wordpress snippet

With so many people using wordpress as a CMS the links manager is not as useful for many people. Adding this snippet to the functions.php of your wordpress theme will remove the links manager menu. This new wordpress 3.0 function “remove_menu_page” can be used to remove any admin menu.

read more
By : , on May 26, 2011 9:00 am

Remove thumbnail support from a specific post type

wordpress snippet

Adding this snippet to the functions.php of your wordpress theme will remove thumbnail support from a specific post type. Change POST_TYPE text to either a custom post type name or post, page to remove support for thumbnails.

read more
By : , on April 03, 2011 9:00 am

Remove the lost your password? link

wordpress snippet

Yesterday I posted a snippet to disable the lost password feature in wordpress. This will add to that little snippet and remove the lost password text from the wordpress login page. This does not remove the link but just replaces the Lost your password? text with nothing effectively removing the link.

read more
By : , on February 26, 2011 9:00 am

Disable the new admin bar

wordpress snippet

Adding this to the functions.php of your wordpress theme will disable the new admin bar.

read more
By : , on December 25, 2010 10:00 am

Remove post excerpt metabox

wordpress snippet

Adding this PHP code to the functions.php of your wordpress theme will remove the post excerpt metabox from the wordpress admin.

read more