Advertisement
ghenzdeveloper

Disable delete comment for non-admin

Nov 27th, 2024
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. add_action('peepso_activity_comment_actions', function ($f) {
  2.     if (!PeepSo::is_admin()) {
  3.         unset($f['delete']);
  4.     }
  5.     return $f;
  6. }, PHP_INT_MAX, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement