24-04-2011

wordpress liste des articles

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>
  1. Mescanefeux:

    Enfin une solution simple qui marche sans query post !!

    merciiiiii

Commentaire pour

wordpress liste des articles

Uncategorized - wordpress - wordpress 3.1



=>> Voir tous les articles des catégories suivantes: Uncategorized - wordpress - wordpress 3.1