Ultimo post di una categoria
Il seguente codice ti da la possibilità di visualizzare l’ultimo o gli ultimi post di una determinata categoria del tuo Wordpress:
<?php $myposts = get_posts(’numberposts=1&category=3′);
foreach($myposts as $post) : ?>
<h3><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a></h3>
<small><?php the_time(’j F Y’) ?> <?php edit_post_link(’Modifica’,'<strong>|</strong> ‘,”); ?>
<strong>|</strong>
<?php comments_popup_link(’0 Commenti »’, ‘1 Commento »’, ‘% Commenti »’); ?></small>
<?php [...]
