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

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 »


Find a content with post id in wordpress

Find a content with post id in wordpress

The following example will show the content of post id 30 <?php $post_id = 30; $post = get_post($post_id); $title = $post->post_title; echo $title; echo $post->post_content; ?> You can customize this… Read more »


Auto update your twitter account when you update your wordpress blog

Auto update your twitter account when you update your wordpress blog

You can update your twitter account update automatically when you update your wordpress blog. It is possible with the help of Tweet-this Plugin. This plugin can also tweet new blog… Read more »


How to Update your WordPress Blog

How to Update your WordPress Blog

Update your wordpress old version into current new version following steps to update your Blog Check Requirements Take a Backup of Your Database Disable Plugins Ready to Update Now that… Read more »


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