wordpress_add

Thursday 5 September 2013

How to get the POST of CATEGORY in wordpress

This is the method to get all the post of Respective Category in wordpress.

NOTE : ( cat="1"  is the ID of that category in which post exist It may be change .)


<?php
query_posts('cat=1');
while (have_posts()) : the_post();
the_content();
endwhile;
?>



Subscribe Dr-Wordpress for Important Knowledge of word press..your's suggestions are most welcomed.




No comments:

Post a Comment