Guest User

Untitled

a guest
Dec 12th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. /**
  2. * Helper function for determining whether the current user is a demo user or not.
  3. *
  4. * @since 1.0.0
  5. *
  6. * @return bool Whether or not the user is a demo
  7. */
  8. private function is_demo_user() {
  9.  
  10. return (bool) ! current_user_can( 'manage_options' );
  11.  
  12. }
Add Comment
Please, Sign In to add comment