Hi, I am using Pinkster theme for my website and I want to show particular category post on homepage not all other category post on homepage can anyone guide on the same. <?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query('showposts=&cat=&paged=' . $paged); ?> Thanks Dikshant
You can use the Cat query like this : <?php query_posts($query_string . '&cat=10'); ?> Where 10 is the Category ID that you want to Display the Posts from on the Homepage. For more information about this query : http://codex.wordpress.org/Template_Tags/query_posts Goodluck