Advertisement
Guest User

Untitled

a guest
Jul 8th, 2010
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function bbg_is_teacher( $user_id = false ) {
  2.     global $current_user;
  3.  
  4.     if ( !$user_id )
  5.         $user_id = $current_user->ID;
  6.  
  7.     if ( get_usermeta( $user_id, 'acct_type' ) == 'teacher' )
  8.         return true;
  9.  
  10.     if ( is_super_admin() )
  11.         return true;
  12.  
  13.     return false;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement