How to get grandparent of a given category
You could write a simple function to do this each time you need to. Here’s an example I found on this website. function pa_category_top_parent_id( $catid ) { while( $catid ) { $cat = get_category( $catid ); // get the object for the catid $catid = $cat->category_parent; // assign parent ID (if exists) to $catid // … Read more