Ecco il codice da inserire nel template per mostrare gli ultimi 5 articoli inviati.
<?php
$lastposts = get_posts(‘numberposts=5’);
foreach($lastposts as $post) :
setup_postdata($post);
?>
<a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a>
<?php endforeach; ?>
0 commenti