Advertisement
pusatdata

WP Trik: Jumlah Post Berbeda tiap Kategori

May 29th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. If you edit the category.php template file you can do a custom query to get back exactly the number of posts you want. You would put this code just before the loop.
  2.  
  3. Get back 10 posts from current category:
  4. query_posts( array ( 'category_name' => single_cat_title( '', false ), 'posts_per_page' => 10 ) );
  5.  
  6. Get back all posts from current category:
  7. query_posts( array ( 'category_name' => single_cat_title( '', false ), 'posts_per_page' => -1 ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement