List/Grid Wordpress Tips Subscribe RSS feed of category Wordpress Tips

Remove admin color scheme picker from profile

Remove admin color scheme picker from profile

Add this script to the functions.php of your wordpress theme will remove the admin color scheme picker from the profile page. if(is_admin()){ remove_action(“admin_color_scheme_picker”, “admin_color_scheme_picker”); }

How to disable auto save, post revision and reduce the database size in wordpress

How to disable auto save, post revision and reduce the database size in wordpress

The auto save option in wordpress is a best feature but not for every. For those who have limited web space, limited database size and they not want to auto… Read more »

Get image URL from post in wordpress

Get image URL from post in wordpress

To get the image URL of post thumbnail in wordpress is little difficult because the wordpress doesn’t provide any function to get the image URL. It only returns the full… Read more »

How to use meta tag and description dynamically for wordpress

How to use meta tag and description dynamically for wordpress

To use meta tag and description in wordpress dynamically, we use the wordpress tags as a meta tags and excert content use as a meta description. As per the requirement… Read more »

How to use featured image in wordpress

How to use featured image in wordpress

To use featured image in wordpress, You must add this line in your functions.php file if ( function_exists( ‘add_theme_support’ ) ) { add_theme_support( ‘post-thumbnails’ ); set_post_thumbnail_size( 150, 150 ); //… Read more »

© 2012 Sumit Bansal. All rights reserved. XHTML / CSS Valid.