追記 ダッシュボードのコメント欄を消すことになったので削除
目次
投稿者本人の投稿ページのコメント編集権限
参考サイト ja.forums.wordpress.org…
style.cssに
.comment-edit-link { visibility: hidden; }
functions.php一番上に
<?php add_action( 'pre_get_comments', 'my_pre_get_comments' ); function my_pre_get_comments( $query ) { if ( is_admin() && ! current_user_can( 'administrator' ) && 'edit-comments.php' == $GLOBALS['pagenow'] ) { $query->query_vars['user_id'] = get_current_user_id(); } } add_filter( 'user_has_cap', 'my_user_has_cap', 10, 3 ); function my_user_has_cap( $allcaps, $caps, $args ) { if ( 'edit_comment' == $args[0] && get_current_user_id() == $args[1] ) { foreach ( $caps as $cap ) { $allcaps[$cap] = true; } } return $allcaps; } ?>