Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 992519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:16:52+00:00 2026-05-16T06:16:52+00:00

I need to make something like wp_list_categories that shows categories that are empty but

  • 0

I need to make something like wp_list_categories that shows categories that are empty but only if they have children categories that have posts in them. Anyone have any ideas?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T06:16:53+00:00Added an answer on May 16, 2026 at 6:16 am

    You can probably do this with a Walker, but I tried it the old-fashioned way.

    $categories = get_categories();
    
    // First index all categories by parent id, for easy lookup later
    $cats_by_parent = array();
    foreach ($categories as $cat) {
        $parent_id = $cat->category_parent;
        if (!array_key_exists($parent_id, $cats_by_parent)) {
            $cats_by_parent[$parent_id] = array();
        }
        $cats_by_parent[$parent_id][] = $cat;
    }
    
    // Then build a hierarchical tree
    $cat_tree = array();
    function add_cats_to_bag(&$child_bag, &$children)
    {
        global $cats_by_parent;
        foreach ($children as $child_cat) {
            $child_id = $child_cat->cat_ID;
            if (array_key_exists($child_id, $cats_by_parent)) {
                $child_cat->children = array();
                add_cats_to_bag($child_cat->children, $cats_by_parent[$child_id]);
            }
            $child_bag[$child_id] = $child_cat;
        }
    }
    add_cats_to_bag($cat_tree, $cats_by_parent[0]);
    
    // With this real tree, this recursive function can check for the cats you need
    function has_children_with_posts(&$children)
    {
        $has_child_with_posts = false;
        foreach ($children as $child_cat) {
            $has_grandchildren_with_posts = false;
            if (isset($child_cat->children)) {
                // Here is our recursive call so we don't miss any subcats
                if (has_children_with_posts($child_cat->children)) {
                    $has_grandchildren_with_posts = true;
                }
            }
            if (0 < intval($child_cat->category_count)) {
                $has_child_with_posts = true;
            } else if ($has_grandchildren_with_posts) {
                // This is a category that has no posts, but does have children that do
                $child_cat->is_empty_with_children = true;
                var_dump($child_cat->name);
            }
        }
        return $has_child_with_posts;
    }
    has_children_with_posts($cat_tree);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to make something like google-analytics, I mean that it has to be
I need something like make i.e. dependencies + executing shell commands where failing command
I'm playing with GAE, and need to make a query with something like this:
I need to make something(i call it a scheduler) that checks the time of
I'm writing an application using WPF, and I need to make something that looks
So basically I need to make feature that if you select something from first
I need to make something like : if isdbnull(value) or value = something then
Im trying to make something like an Rpg game atm but im really stuck
i want to make a website something like popurls.com, but I will use static
I'm writing an application using WPF, and I need to make something that looks

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.