含まれる投稿の数に基づいてカテゴリ/分類リストを並べ替える方法はありますか?
よろしく、 デジズナー
<?php
foreach (get_categories('orderby=count&order=DESC') as $category )
{
/*Some stuff here*/
}
?>
詳細については、https ://developer.wordpress.org/reference/functions/get_categories/ をご覧ください。