‚post‘,
‚posts_per_page‘ => 10
);
$query = new WP_Query($args);
ob_start();
if ($query->have_posts()) {
echo ‚
‚;
while ($query->have_posts()) {
$query->the_post();
$thumbnail = get_the_post_thumbnail(get_the_ID(), ‚medium‘);
$title = get_the_title();
$permalink = get_permalink();
$excerpt = get_the_excerpt();
while ($query->have_posts()) {
$query->the_post();
$thumbnail = get_the_post_thumbnail(get_the_ID(), ‚medium‘);
$title = get_the_title();
$permalink = get_permalink();
$excerpt = get_the_excerpt();
echo ‚
‚;
echo ‚
echo ‚
‚;
echo ‚
‚;
echo ‚
‚;
}
echo ‚
‚;
wp_reset_postdata();
}
return ob_get_clean();
}
?>