function Last5posts() {
$args = array( 'posts_per_page' => 5, 'category_name' => 'Singapore');
$last_5_posts_query = new WP_Query( $args );
while($last_5_posts_query->have_posts()) :
$last_5_posts_query->the_post();
$link = get_permalink();
$title = get_the_title();
$date = get_the_date();
$content .= '
';
$content .= '
';
endwhile;
return $content;
}
add_shortcode('Last5Posts', 'Last5posts' );'.$title.' / '.$date. '
'; $content .= '' .get_the_excerpt(). '
'; $content .= '