Tag Archives: wordpress



WordPress vs Drupal vs Joomla

You might be interested in:Internet argument rating – InfographCall to action testDoes Facebook Affect Your Relationships? Including custom field in post in wordpressWordpress: Featured Image option not avaliable


Including custom field in post in wordpress

Want to include your custom field values into your post? There are various ways to show custom field values on your post, I am going to use the following methord


WordPress: Featured Image option not avaliable

WordPress them does not show or support featured image option? Add below code to function.php page add_theme_support( ‘post-thumbnails’ ); It should display in your post option You might be interested in:Wordpress vs Drupal vs JoomlaIncluding custom field in post in wordpressWordpress home post as page


WordPress home post as page

Most of the wordpress blogs or themes display post in their home page, for one of my project I wanted to display pages in the home page template This was the template code get_option(‘theme_home_posts’), ‘cat’=>’-’.get_cat_id(get_option(‘theme_featured’)), ‘paged’=>$paged, ); query_posts($args); while (have_posts()) : the_post(); ?> To simplify the code, all the post with category theme_featured will display. [...]