Добрый день, подскажите имеется шорткод выводящих 5 записей на главную страницу с 5 новыми записями + дата. Как добавить в этот шордкод картинку, которая отображается в рубриках этих же записей?
function pu_recent_posts_shortcode($atts, $content = NULL)
{
$atts = shortcode_atts(
[
'orderby' => 'date',
'posts_per_page' => '5'
], $atts, 'recent-posts' );
$query = new WP_Query( $atts );
$output = '<ul class="recent-posts">';
while($query->have_posts()) : $query->the_post();
$output .= '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a> - <small>' . get_the_date() . '</small></li>';
endwhile;
wp_reset_query();
return $output . '</ul>';
}
add_shortcode('recent-posts', 'pu_recent_posts_shortcode');