Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/08/2009, 14:36
NeoSkyx
 
Fecha de Ingreso: agosto-2009
Mensajes: 5
Antigüedad: 14 años, 9 meses
Puntos: 0
Respuesta: 2 dudas sencillas

si, por supuesto.
<?php
get_header();
?>

<div id="content">

<div id="sites">
<h1>Lo más destacado</h1>
<?php sites(); ?>
</div>


<?php $count = 0;?>
<?php query_posts('showposts=4'); ?>
<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

<div class="postindex" id="post-<?php the_ID(); ?>">

<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>



<div class="entry"><?php the_excerpt(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Seguir leyendo <?php the_title_attribute(); ?>">Seguir leyendo...</a></p>
</div>
<div class="spacer"></div>
<ul class="post-data">
<li class="comments">
<?php comments_popup_link('No Comments &raquo;', '1 Comment &raquo;', '% Comments &raquo;'); ?>
</li>
<li class="posted">
<?php the_time('F jS, Y') ?> by <?php the_author() ?> <?php edit_post_link('Edit','',''); ?>
</li>


</ul>
</div>


<?php comments_template(); ?>
<?php
if($count == 1 ) {
echo "<div style='clear:both;'></div>";}
$count = $count+1;
?>



<?php endwhile; else: ?>
<p><?php _e('No hemos encontrado lo que buscas.'); ?></p>
<?php endif; ?>




<?php get_footer(); ?>


Puedes bajar el theme completo de aqui -> wordpress.topwpthemes.com/download/atriumax.zip

El problema es que aunque añada imágenes no salen en las entradas del index y las entradas al estar en cajas tienen una limitacion de palabras que me gustaría sobrepasar.

Muchas gracias, a ver si das con ello te lo agradecería eternamente :)