• Resolved Reiniepress

    (@reiniepress)


    Maybe I missed it, but is there a way to only show the parent category with the total count including subcategories? Currently it seems to just list all categories. Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Tema

    (@madeinua)

    Hello,

    It’s possible to implement using the filter “colorful_categories_get_terms”:

    add_filter('colorful_categories_get_terms', function($args){
    $args['parent'] = 'parent_category_id';
    return $args;
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Subcategory count and exclusion’ is closed to new replies.