• Resolved termserv

    (@termserv)


    I found a script here in the forums that returned the topmost post parent, but I need to get the topmost category parent (preferrably the ID)?

Viewing 1 replies (of 1 total)
  • Thread Starter termserv

    (@termserv)

    I made it work with the following function:

    function in_parent_category($cats, $_post = null)
    {
    	foreach ((array) $cats as $cat)
    	{
    		$descendants = get_term_children((int) $cat, "category");
    		if ($descendants && in_category($descendants, $_post))
    			return true;
    	}
    	return false;
    }

    Just feed the function with the category ID of the parent, and then it checks the current post (if in the loop) if it’s in a category which is a child of the category ID you specify.

    if (in_parent_category(4))
    {
    	// do this
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Get topmost category parent’ is closed to new replies.