Last active
October 18, 2020 11:23
-
-
Save ikamal7/83a6a94e075e14c9315849e9679ce4bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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