Skip to content

Instantly share code, notes, and snippets.

@ikamal7
Last active October 18, 2020 11:23
Show Gist options
  • Save ikamal7/83a6a94e075e14c9315849e9679ce4bf to your computer and use it in GitHub Desktop.
Save ikamal7/83a6a94e075e14c9315849e9679ce4bf to your computer and use it in GitHub Desktop.
<?php
//Get post count of a category including sub-categories in WordPress
function wp_get_cat_postcount( $id ) {
$cat = get_category( $id );
$count = (int) $cat->count;
$taxonomy = 'category';
$args = array(
'child_of' => $id,
);
$tax_terms = get_terms( $taxonomy, $args );
foreach ( $tax_terms as $tax_term ) {
$count += $tax_term->count;
}
return $count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment