I’m trying to adjust the comments screen for non admins to my project.
Right now I’d like to disable
Quick Edit | Edit | History | Spam
under any comment left for any post created by the user.
Thanks!
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
This is done filtering the *_row_actions.
For the Comments screen (/wp-admin/edit-comments.php) this is the hook:
add_filter( 'comment_row_actions', 'comments_row_wpse_92313', 15, 2 );
function comments_row_wpse_92313( $actions, $comment )
{
if( !current_user_can( 'delete_plugins' ) )
unset( $actions['quickedit'], $actions['edit'], $actions['spam'] );
return $actions;
}
I cannot see a History option, maybe it’s included by some plugin (?). It’s a matter of adding it to the unset list.
These are the default actions in the core files:
$actions = array(
'approve' => '',
'unapprove' => '',
'reply' => '',
'quickedit' => '',
'edit' => '',
'spam' => '',
'unspam' => '',
'trash' => '',
'untrash' => '',
'delete' => ''
);
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0