Advertisement
pusatdata

Jumlah Post dalam Kategori/Sub-kategori

Apr 9th, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function.php:
  2.  
  3. function wp_get_cat_postcount($id) {
  4. $cat = get_category($id);
  5. $count = (int) $cat->count;
  6. $taxonomy = 'category';
  7. $args = array(
  8. 'child_of' => $id,
  9. );
  10. $tax_terms = get_terms($taxonomy,$args);
  11. foreach ($tax_terms as $tax_term) {
  12. $count +=$tax_term->count;
  13. }
  14. return $count;
  15. }
  16.  
  17. show:
  18. The total number of posts under "My Awesome Category" is <?php echo wp_get_cat_postcount(2); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement