Guest User

Untitled

a guest
May 27th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. function get_root_category($category_id='')
  3. {
  4. $mycat = get_term($category_id, 'product_cat');
  5. $myparent = $mycat->parent;
  6. if ($myparent > 0) return get_root_category($myparent);
  7. else return $mycat->term_id;
  8. }
  9. ?>
Add Comment
Please, Sign In to add comment