/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function get_root_category($category) { while ($category->parent > 0) $category = get_category($category->parent); return $category; }