$output = '';
foreach($latest_posts as $post)
{
$post_title = $post->post_title;
$post_date = $post->post_date;
$post_content = substr($post->post_content, 0, 165);
$comment_count = $post->comment_count;
$post_permalink = get_permalink($post->ID);
$thumbnail = get_the_post_thumbnail(
$post->ID,
'thumbnail',
array(
'class' => '',
'alt' => $post_title,
'title' => $post_title
)
);
$output .= '
';
}
$output .= '';
return $output;
}
add_shortcode( 'last-posts', 'get_latest_posts' );