Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
他のユーザーが投稿者のすべての投稿に対して送信したコメントの総数を表示したいです!たとえば、次のようなものです。
get_author_posts_total_number_of_comments($author->ID);
何か案が ?
function get_author_posts_total_number_of_comments($authorID) { global $wpdb; $sql = "SELECT SUM(comment_count) AS total FROM $wpdb->posts WHERE post_author=%d"; return $wpdb->get_var($wpdb->prepare($sql,$authorID)); }