Advertisement
Guest User

Untitled

a guest
Feb 26th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php $cat_posts = get_posts('post_type=post&category=' . $cat->term_id . '&numberposts=-1'); ?>
  2. <?php $cat_probs = get_posts('post_type=probsoln&category=' . $cat->term_id . '&numberposts=-1'); ?>
  3. <?php $count = count($cat_posts); ?>
  4. <?php $count_prob = count($cat_probs); ?>
  5.  
  6.  
  7. <?php
  8.     $cat_posts = get_posts('post_type=post&category=' . $cat->term_id . '&numberposts=-1');
  9.     $cat_probs = get_posts('post_type=probsoln&category=' . $cat->term_id . '&numberposts=-1');
  10.     $count = count($cat_posts);
  11.     $count_prob = count($cat_probs);
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement