Ciao a tutti,
vorrei mettere i titoli degli articoli (con collegamento allo stesso) nella sidebar e nel primo articolo deve comparire anche la foto,
come posso fare?
Ho fatto cosi ma non va, non esce la foto, esce tutto tranne la foto

codice:
<?php query_posts('showposts=5'); ?>
<?php while ( have_posts() ) : the_post(); ?> [*]
<div>
<?php if(has_post_thumbnail()) { the_post_thumbnail(  array(40,40) );
} ?>
</div>
<h4>"><?php the_title(); ?></h4>

<span><?php the_time('d F Y'); ?> postato da <?php the_author(); ?></span>

<?php endwhile; ?>