GIRAFOTO
[ratings]
// Shortcode [bonplan] — affiche le dernier article de la catégorie Actualité function tpg_bon_plan_shortcode() { ob_start(); $query = new WP_Query([ 'category_name' => 'actualite', 'posts_per_page' => 1 ]); if($query->have_posts()){ $query->the_post(); echo '🔥 BON PLAN DU MOMENT : '; echo ''; echo get_the_title(); echo ''; wp_reset_postdata(); } return ob_get_clean(); } add_shortcode('bonplan', 'tpg_bon_plan_shortcode');