6,
‘post_status’ => ‘publish’,
‘ignore_sticky_posts’ => 1
);
$latest_posts_query = new WP_Query($latest_posts_args);
// بدء حلقة ووردبريس
if ($latest_posts_query->have_posts()) :
while ($latest_posts_query->have_posts()) : $latest_posts_query->the_post();
// جلب أول تصنيف للمقال لعرضه فوق العنوان
$categories = get_the_category();
$first_cat_name = !empty($categories) ? esc_html($categories[0]->name) : ‘Recipe’;
?>
No recipes have been published yet.
