/ Published in: PHP
Expand |
Embed | Plain Text
function get_root_category($category) { while ($category->parent > 0) $category = get_category($category->parent); return $category; }
You need to login to post a comment.
widescape on 01/24/11
wordpress category categories root
1 person have marked this snippet as a favorite
function get_root_category($category) { while ($category->parent > 0) $category = get_category($category->parent); return $category; }
You need to login to post a comment.