Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/06/2009, 10:01
toniveas
 
Fecha de Ingreso: diciembre-2001
Mensajes: 118
Antigüedad: 22 años, 10 meses
Puntos: 0
Respuesta: Error al mostrar submenu si estoy en categoria padre o hija

Muchas gracias... pero encontré otra solución.. alla va

Código PHP:
if (!function_exists('is_category_or_sub')) {
    function 
is_category_or_sub($cat_id 0) {
        foreach (
get_the_category() as $cat) {
            if (
$cat_id == $cat->cat_ID || cat_is_ancestor_of($cat_id$cat)) return true;
        }
        return 
false;
    }
}
if (
is_category_or_sub(aqui_pongo_el_numero_de_la_categoria_padre)) { 
    
wp_list_categories('title_li=&orderby=id&show_count=0&use_desc_for_title=0&child_of=aqui_pongo_el_numero_de_la_categoria_padre');