Advertisement
arie_cristianD

jnews_paywall_unaffected_role_list

Nov 27th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. add_filter( 'jnews_paywall_unaffected_role_list', 'unaffected_roles' );
  2.  
  3. function unaffected_roles( $roles ) {
  4.     $roles = array( 'administrator', 'author' );
  5.     return $roles;
  6. }
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement