Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/07/2009, 19:50
webbber
 
Fecha de Ingreso: febrero-2008
Mensajes: 296
Antigüedad: 16 años, 2 meses
Puntos: 2
Respuesta: 1 tema por categoria

la web es esta pero elindex esta configurado estatico hasta que no logre corregir el error.
el codigo del index dinamico que muestra los ultimos temas de estas 3 categorias es:
Cita:
<!-- ultimas noticias inicio -->
<div class="topPost">
<h2 class="topTitle">Categoria 1</h2>
</div>
<?php $recent = new WP_Query("cat=1&showposts=1");
while($recent->have_posts()) : $recent->the_post();?>
<div class="topPostcats">
<b class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></b>
<div class="topContent"><?php the_excerpt(); ?>(Leido <?php if(function_exists('the_views')) { the_views(); } ?> veces)
</div>
</div> <!-- Closes topPost -->
<div style="clear:both"></div>
<?php endwhile; ?>
<!-- ultimas noticias FIN -->
<!-- videos Inicio -->
<div class="topPost">
<h2 class="topTitle">Categoria 2</h2>
</div>
<?php $recent = new WP_Query("cat=78&showposts=1");
while($recent->have_posts()) : $recent->the_post();?>
<div class="topPostcats">
<b class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></b>
<div class="topContent"><?php the_excerpt(); ?>(Leido <?php if(function_exists('the_views')) { the_views(); } ?> veces)
</div>
</div> <!-- Closes topPost -->
<div style="clear:both"></div>
<?php endwhile; ?>
<!-- videos FIN -->
<div class="topPost">
<h2 class="topTitle">Categoria 2</h2>
</div>
<?php $recent = new WP_Query("cat=361&showposts=1");
while($recent->have_posts()) : $recent->the_post();?>
<div class="topPostcats">
<b class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></b>
<div class="topContent"><?php the_excerpt(); ?>(Leido <?php if(function_exists('the_views')) { the_views(); } ?> veces)
</div>
</div> <!-- Closes topPost -->
<div style="clear:both"></div>
<?php endwhile; ?>
La imagen que muestra al lado de cada excerpt es la misma de la categoria 1, la cual se repite en el resto de las 2 categorias siguientes.
__________________
Mi blog de Actualidad y Tecnologia