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.