Ver Mensaje Individual
  #10 (permalink)  
Antiguo 03/11/2011, 13:43
Abelmelero
 
Fecha de Ingreso: marzo-2009
Mensajes: 168
Antigüedad: 15 años, 1 mes
Puntos: 1
Respuesta: Excluir categorias de la lista de las categorias

Hola Nekko,

Ya te entiendo. he probado a eliminar el widget y copiar el código y no me sale absolutamente nada.

se te ocurre algo más. Mira te dejo el código php de la plantilla sidebarleft.php.

Código PHP:
Ver original
  1. <div class="span-5">
  2.         <div class="sidebar sidebar-left">
  3.        
  4.             <ul>
  5.  
  6.  
  7.                 <?php
  8.                         if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Left Sidebar') ) : ?>
  9.    
  10.                     <li><h2><?php _e('Recent Posts'); ?></h2>
  11.                                <ul>
  12.                         <?php wp_get_archives('type=postbypost&limit=5'); ?>  
  13.                                </ul>
  14.                     </li>
  15.                    
  16.                 <?php wp_list_categories('hide_empty=1&show_count=0&depth=1&title_li=<h2>Categories</h2>'); ?>
  17.  
  18.  
  19.                
  20.                                        
  21.                    
  22.                     <?php include (TEMPLATEPATH . '/recent-comments.php'); ?>
  23.                 <?php if (function_exists('get_recent_comments')) { get_recent_comments(); } ?>
  24.                
  25.                        
  26.                    
  27.                    
  28.                 <?php endif; ?>
  29.             </ul>
  30.            
  31.         <?php if(get_theme_option('ad_sidebar1_bottom') != '') {
  32.         ?>
  33.         <div class="sidebaradbox">
  34.             <?php echo get_theme_option('ad_sidebar1_bottom'); ?>
  35.         </div>
  36.         <?php
  37.         }
  38.         ?>
  39.         </div>
  40. </div>

Última edición por Nekko; 04/11/2011 a las 10:05