Guest User

Untitled

a guest
May 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // Add Shortcode to show posts count inside a category
  2. function category_post_count( $atts ) {
  3.  
  4. $atts = shortcode_atts( array(
  5. 'category' => null
  6. ), $atts );
  7.  
  8. // get the category by slug.
  9. $term = get_term_by( 'slug', $atts['category'], 'category');
  10.  
  11. return ( isset( $term->count ) ) ? $term->count : 0;
  12. }
  13. add_shortcode( 'category_post_count', 'category_post_count' );
Add Comment
Please, Sign In to add comment