Wordpressのshortcodeで投稿最新リスト表示

function list_news() {
	$my_query = new WP_Query('showposts=10&orderby=date&order=DESC&post_status=publish');
	$retHtml='<ul>';
	
	while ($my_query->have_posts()) {
		$my_query->the_post();
		$retHtml.= '<li>'.  the_date('Y/m/d', '<span class="date">', '</span>', false). '<a href="'.get_permalink().'">'.the_title("","",false).'</a></li>';
	}
    return $retHtml.= '</ul>';
}
add_shortcode('latest_news', 'list_news');

こんなものでも書くの疲れる