Géopolitique
[codesyntax lang="php"]
<?php global $post; // showposts: nombre d'article affiché // category: l'id de la catégorie $postslist = get_posts('showposts=5&category=geopolitique&order=DESC&orderby=date'); foreach($postslist as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <li><?php the_excerpt(); ?></li> <li > <p title="Continue reading"><a href="<?php the_permalink() ?>">Read more...</a></p> </li> <?php endforeach; ?>
[/codesyntax]