24-04-2011
Vous voulez afficher la liste des articles dans la sidebar de votre thème?
<ul> <li><span class="ul1"><strong>Les derniers articles</strong></span></li> <?php global $post; $args = array( 'numberposts' => 50, 'offset'=> 1 ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>


Enfin une solution simple qui marche sans query post !!
merciiiiii