'post',
'posts_per_page' => 10, // Show 10 latest posts
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post(); ?>
term_id)) . '">' .'Category : '. esc_html($categories[0]->name) . '';
}
?>
Read More
No posts found.';
endif;
?>
' . $category->name . '';
$args = array(
'post_type' => 'post',
'posts_per_page' => 5, // Show 5 latest posts
'category__in' => array($category->term_id),
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post(); ?>
term_id)) . '">' .'Category : '. esc_html($categories[0]->name) . '';
}
?>
Read More
No posts found.';
endif;
}
?>