「記事」タグアーカイブ

コメントページの上のコメント数を「あなたの記事に書かれた、他ユーザーのコメント数」のみカウントする方法 WordPress BuddyPressカスタマイズメモ

管理画面のコメントページでコメント数は「あなたの記事に書かれた、他ユーザーのコメント数」のみカウントさせる

WordPressのSNSプラグイン、BuddyPressを導入すると不特定多数のメンバーが参加することになる。

他人の記事へのコメントを、投稿者に見せる必要はないので、それを非表示にした上で、コメントページの上にある、コメント数のカウントを自分の投稿へのコメントのみカウントするようにする。
 

functions.php へ記述

//投稿者のみ、コメントを「自分の投稿」へのコメント数のみカウント

function myblogs_comments_count() {
 global $pagenow;
 if(is_admin() && current_user_can( 'author' )){ //管理画面かつ投稿者権限の場合
  global $user_ID;
  get_currentuserinfo();
  if ( false === ( $stats = get_transient( 'myblogs_author'.$user_ID.'_comments' ) ) ) {
   $stats = array('moderated'=>0,'approved'=>0,'post-trashed'=>0,'trash'=>0,'total_comments'=>0,'spam'=>0);
   $the_query = new WP_Query( array('author' => $user_ID,'posts_per_page' => -1) );
   if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
    $comments = myblogs_count_comments(get_the_id()); //それぞれの状態のコメントをカウント
    $stats['moderated'] = $stats['moderated'] + $comments->moderated;
    $stats['approved'] = $stats['approved'] + $comments->approved;
    $stats['post-trashed'] = $stats['post-trashed'] + $comments->{'post-trashed'};
    $stats['trash'] = $stats['trash'] + $comments->trash;
    $stats['total_comments'] = $stats['total_comments'] + $comments->total_comments;
    $stats['spam'] = $stats['spam'] + $comments->spam;
   endwhile;
   endif;
   wp_reset_postdata();
   set_transient( 'myblogs_author'.$user_ID.'_comments', $stats, 60 * 30 );
  }
  return (object) $stats;
 }
}
add_filter('wp_count_comments','myblogs_comments_count');

//「自分の投稿」へのコメント数をカウントの後半

function myblogs_count_comments( $post_id = 0 ) {
 global $wpdb;
 $post_id = (int) $post_id;
 if ( !empty($stats) )
  return $stats;
  $count = wp_cache_get("comments-{$post_id}", 'counts');
 if ( false !== $count )
  return $count;
  $where = '';
 if ( $post_id > 0 )
  $where = $wpdb->prepare( "WHERE comment_post_ID = %d", $post_id );   $count = $wpdb->get_results( "SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A );
  $total = 0;
  $approved = array('0' => 'moderated', '1' => 'approved', 'spam' => 'spam', 'trash' => 'trash', 'post-trashed' => 'post-trashed');
 foreach ( (array) $count as $row ) { // 全てで、ゴミ箱のものはカウントしない
  if ( 'post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved'] )
   $total += $row['num_comments'];
  if ( isset( $approved[$row['comment_approved']] ) )
   $stats[$approved[$row['comment_approved']]] = $row['num_comments'];
 }
 $stats['total_comments'] = $total;
 foreach ( $approved as $key ) {
  if ( empty($stats[$key]) )
   $stats[$key] = 0;
 }
 $stats = (object) $stats;
 wp_cache_set("comments-{$post_id}", $stats, 'counts');
 return $stats;
}

 
なお、
「コメント」に、「あなたの記事に他ユーザーが書いたコメント」のみを表示させる方法はこちらを参照。

「コメント」に、「あなたの記事に他ユーザーが書いたコメント」のみを表示させる WordPress BuddyPressカスタマイズメモ

「コメント一覧」に「あなたの記事に他ユーザーが書いたコメント」のみを表示する方法

WordPressのSNSプラグイン、BuddyPressを導入すると不特定多数のメンバーが参加することになる。

そのままの状態では、投稿者でも、全員のコメントが見えるし、編集、削除もできてしまう。

管理画面のコメントには、自分の投稿記事に対してつけられたコメントのみを表示する。

コメントの編集権に関しては、人が書いたコメントは編集できないようにしておく。
 

functions.php へ記述

//投稿者のみ、「自分の投稿」へのコメントのみ表示

if (!current_user_can('administrator')) {
function myblogs_user_comments_only($query){
 global $pagenow;
 if('edit-comments.php' != $pagenow || $query->is_admin) { //コメントページで
  return $query;
 } else {
  global $user_ID;
  $query->query_vars['post_author'] = $user_ID; //記事投稿者とログインユーザーIDが一致のものだけ
 }
 return $query;
}
add_filter('pre_get_comments','myblogs_user_comments_only');
}

“管理者”でも非表示にしたい場合は、一番上と一番下の

if (!current_user_can('administrator')) {

}

を削除すればいい。

なお、
投稿者が人のコメントを編集、削除できないようにする方法はこちらを参照。

WordPressのオリジナルメニュー「あなたのコメント」の上のコメントメニュー(スパムチェック、一括操作も)削除 BuddyPressカスタマイズメモ

オリジナルメニュー「あなたのコメント」の上のコメントメニュー(スパムチェック、一括操作も)削除

 
WordPressのSNSプラグイン、BuddyPressを導入すると不特定多数のメンバーが参加することになる。

・「あなたのコメント」を管理画面のメニューに追加

・「あなたのコメント」に投稿者自身が、人の記事に書いたコメントを表示


 

functions.php へ記述

後々、人が書いたコメントを編集したり削除したりできなくするので、スパムチェック、一括操作等も削除しておく。

//投稿一覧画面とコメント画面のバルクメニューを非表示

if (!current_user_can('administrator')) {
add_filter( 'bulk_actions-edit-post', '__return_empty_array', 100 ); //投稿のバルクメニュー
add_filter( 'bulk_actions-edit-comments', '__return_empty_array', 100 ); //コメントのバルクメニュー
add_filter( 'filter_by_comment-type-edit-comments', '__return_empty_array', 100 ); //コメントの編集用フィルター
add_filter( 'bulk_actions-edit-comments-mine', '__return_empty_array', 100 ); //あなたのコメントでのバルクメニュー
}

“管理者”でもメニューを削除したい場合は、一番上と一番下の

if (!current_user_can('administrator')) {

}

を削除すればいい。