Answers for "see all the post in one catagory with out pagination"

PHP
0

see all the post in one catagory with out pagination

<?php
query_posts(array('cat'=>20,'posts_per_page'=>-1));
?>
Posted by: Guest on July-09-2020
0

see all the post in one catagory with out pagination

<?php $posts = new WP_Query(array('cat'=>20,'posts_per_page'=>-1)); ?>
Posted by: Guest on July-09-2020

Code answers related to "see all the post in one catagory with out pagination"

Browse Popular Code Answers by Language