yuheijotaki.com

WP_Query 並び順の複数条件指定

	$args = array(
		'posts_per_page' => '-1',
		'orderby' => 'comment_count date' 第1条件:コメント数、第2条件:日付順
	);
	$the_query = new WP_Query( $args );
	...