Здесь я отправляю код для вас, пожалуйста, проверьте.
<?php
//Args
$myquery = array(
'post_type' => 'post', // Here you add your post type
'posts_per_page' => 4,
'orderby' => 'post_date',
'order' => 'DESC'
);
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post(); ?>
<?php /* grab the url for the full size featured image */
$featured_img_url = get_the_post_thumbnail_url(get_the_ID(),'full'); ?>
<ul>
<li><?php echo get_the_title(); ?></li>
<li><?php echo get_the_date(); ?></li>
<li><img src="<?php echo $featured_img_url; ?>" /></li>
</ul>
<?php }
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
}