'post', 'posts_per_page' => 5, 'order' => 'DESC', 'post_status' => 'publish', ); $my_query = new WP_Query( $args ); // 3. on lance la boucle ! echo "\n"; if ( $my_query->have_posts() ) : while ( $my_query->have_posts() ) : $my_query->the_post(); echo "\n"; echo " "; echo wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) ); echo "\n"; echo " "; echo htmlspecialchars(get_the_title()); echo "\n"; echo ""; echo get_permalink(); echo ""; echo "\n"; endwhile; endif; echo ""; die(); } }