WordPress フォーラムのクエリを変更して、必要なものを取得しました。このセットアップの「大きな」利点は、データベースに対して 1 つの要求しか行わないことです。ただし、スクリプトを変更する必要があることを意味しますが、それは大したことではないと思います。
ここにクエリがあります
-- selects the comment count and term (category) name
SELECT SUM(p.comment_count) AS count, t.name FROM wp_posts p
JOIN wp_term_relationships tr ON tr.object_id = p.ID
JOIN wp_term_taxonomy tt ON tt.term_taxonomy_id = tr.term_taxonomy_id
JOIN wp_terms t ON t.term_id = tt.term_id
WHERE t.term_id in (1,2,3,4,5...)
AND p.post_status = 'publish'
GROUP BY t.term_id
そして、これが上記のコードの書き方です。
<?php
global $wpdb;
$categories = get_categories(array(
'hide_empty' => 0,
'hierarchical' => 0,
'exclude' => '1' //exclude uncategorised
));
// create a comma separated string of category ids
// used for SQL `WHERE IN ()`
$category_ids = implode(',', array_map(function($cat) {
return $cat->term_id;
}, $categories));
$query = "SELECT SUM(p.comment_count) AS count, t.name FROM wp_posts p
JOIN wp_term_relationships tr ON tr.object_id = p.ID
JOIN wp_term_taxonomy tt ON tt.term_taxonomy_id = tr.term_taxonomy_id
JOIN wp_terms t ON t.term_id = tt.term_id
WHERE t.term_id in ($category_ids)
AND p.post_status = 'publish'
GROUP BY t.term_id";
$categories = $wpdb->get_results($query);
echo '<ul>';
foreach( $categories as $category ) {
printf("<li>the %s category has %s comments</li>", $category->name, $category->count);
}
echo '</ul>';