Advertisement
GochiSiyan

remove menu for subscriber

Oct 26th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. add_filter( 'jnews_view_counter_endpoint', function ( $endpoint) {
  2. if (current_user_can('subscriber')) {
  3. return [];
  4. }
  5.  
  6. return $endpoint;
  7. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement