Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/05/2014, 09:47
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Respuesta: ID categoria padre

Yo utilizo esta función, con ella obtienes la categoría mas alta en la jerarquía:

Código PHP:
Ver original
  1. function get_top_category($catid){
  2.     while ($catid) {
  3.         $cat = get_category($catid);
  4.         $catid = $cat->category_parent;
  5.         $cat_parent = $cat;
  6.     }
  7.     return $cat_parent;
  8. }
  9.  
  10. //CALL
  11. $parent = get_top_category( $catid );