Ver Mensaje Individual
  #13 (permalink)  
Antiguo 05/10/2010, 03:01
Nachoseo
 
Fecha de Ingreso: enero-2008
Ubicación: Madrid
Mensajes: 72
Antigüedad: 16 años, 3 meses
Puntos: 1
Respuesta: Problema con categorías anidadas

Hola Metacortex,

Este es el código en el que estoy haciendo las modificaciones, el archivo archive.php del theme de Wordpress. El problema que tengo ahora es que no me aparece ningún post.

Código PHP:
<?php get_header(); ?>

    <div id="sinmenu" class="narrowcolumn">

        <?php if (have_posts()) : ?>

       <?php $post $posts[0]; // Hack. Set $post so that the_date() works. ?>
       <?php /* If this is a category archive */ if (is_category()) { ?>
        <h2 class="pagetitle">Archivo ‘<?php single_cat_title(); ?>’ </h2>
       <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
        <h2 class="pagetitle">Posts Tagged ‘<?php single_tag_title(); ?>’</h2>
       <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
        <h2 class="pagetitle">Archivo <?php the_time('F jS, Y'); ?></h2>
       <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
        <h2 class="pagetitle">Archivo <?php the_time('F, Y'); ?></h2>
       <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
        <h2 class="pagetitle">Archivo<?php the_time('Y'); ?></h2>
      <?php /* If this is an author archive */ } elseif (is_author()) { ?>
        <h2 class="pagetitle"> Archivo autor</h2>
       <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
        <h2 class="pagetitle">Archivos del blog</h2>
       <?php ?>
        
        <?
            $catquery 
get_query_var('cat');
            foreach((
get_the_category()) as $category)
            
$c $category->term_id == $catquery $category->term_id null;

            
query_posts(array('category__in'=>array('. $c .')))

        
?>

        <?php while (have_posts()) : the_post(); ?>
        <div class="post">
                <h3 id="post-<?php the_ID(); ?>" class="h2portada"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>

                <div class="entrada">
                    <?php the_excerpt('Leer m&aacute;s &raquo;'); ?>
                </div>

                <p class="postmetadata"><?php the_tags('Tags: '', ''<br />'); ?> Categor&iacute;as: <?php the_category(', '?> | <?php edit_post_link('Editar'''' | '); ?>  <?php comments_popup_link('No hay comentarios »''1 Comentario »''% Comentarios »'); ?></p>

            </div>

        <?php endwhile; ?>

        <div class="navigation">
            <div class="alignleft"><?php next_posts_link('&laquo; Older Entries'?></div>
            <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;'?></div>
        </div>

    <?php else : ?>

        <h2 class="center">Not Found</h2>
        <?php include (TEMPLATEPATH '/searchform.php'); ?>

    <?php endif; ?>

    </div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>
Muchas gracias por la ayuda