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 3938142
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:09:01+00:00 2026-05-20T00:09:01+00:00

i am in a situation where i need to the build the tree from

  • 0

i am in a situation where i need to the build the tree from the child nodes i.e i have to travese from child node to the parent my question is is it possible and what is the algorithm for this?

Thanks in advance

  • 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-20T00:09:02+00:00Added an answer on May 20, 2026 at 12:09 am

    I did something similar to what you’re looking for. I think this should work for you, with minor adjustments. Excuse the WordPressiness – you should be able to figure out what it’s doing, anyways.

    function find_parents( $category_id ) {
    
        global $wpdb;
    
        $category = $category_id;
    
        while (1) {
    
            $parent_category = $wpdb->get_row(
                $wpdb->prepare("SELECT * FROM hierarchy WHERE id=%d", $category)
            );
    
            $data[] = array( id => $parent_category->id, name => $parent_category->category_name );
    
            if ($parent_category->parent_id == 0) {
                break;
            }
    
            $category = $parent_category->parent_id;
    
        }
    
        return $data;
    
    }
    

    This will return an array in reverse order an item or category, and each subsequent parent.

    The function to go the opposite direction, from the top category down and will retrieve ALL categories, is:

    function find_children( $parent_id, $data ) {
    
        foreach ( $data as $child ) {
    
            if ( $child->parent_id == $parent_id ) {
                $children[] = array(
                    'attr' => array(
                        'id' => 'cat_' . $child->id,
                        'dbid' => $child->id,
                        'link_to' => $child->link_to,
                        'rel' => ( $child->link_to ? 'link' : 'default' )
                    ),
                    'data' => $child->category_name,
                    'children' => find_children( $child->id, $data )
                );
            }
    
        }
    
        return $children;
    
    }
    

    Between the two of them, you’ll probably be able to cobble something together, I hope :/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a situation where I need to dynamically build up a list of
I have a situation where I need to get data from one of over
this is the situation: I need horizontal scrolling, and table views inside every page.
I am facing a situation and need help. I have two tables: user: user_id
Did you ever have the following situation: you need to store information, but a
I have situation where I need to change the order of the columns/adding new
I have a situation where I need to pass two parameters to an action.
There is a situation where I need to have a suspend kind of behavior
The situation: I need to convert our current development environment from Windows XP 32-bit to
I have a situation where I need to generate a bunch of C# code

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.