J'utilise ceci directement du codex pour lister 3 titres d'articles récents.
<ul>
<?php
$args = array( 'numberposts' => '3');
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
}
?>
</ul>
Cela fonctionne bien cependant, lorsque je change le post_title en post_excerpt, il ne montre pas l'extrait.
Comment puis-je résoudre ça?
Volez le code de get_the_excerpt()
:
apply_filters( 'get_the_excerpt', $recent['post_excerpt'] )