Advertisement
GochiSiyan

subscriber can not create post

Apr 29th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter('jnews_frontend_submit_create_post',function ($args) {
  2. if ( get_user_option( 'jpw_subscribe_status', get_current_user_id() ) === 'ACTIVE' ) {
  3. throw new Exception('Subscriber can not create post!');
  4. }
  5. return $args;
  6. },99999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement