복붙노트

[WORDPRESS] 사용자가 ID와 워드 프레스에 로그인되어 있는지 알아보십시오

WORDPRESS

사용자가 ID와 워드 프레스에 로그인되어 있는지 알아보십시오

해결법


  1. 1.당신은 주위에 같이 갈 수 있습니다 :

    당신은 주위에 같이 갈 수 있습니다 :

    if ( is_user_logged_in() ) {
         $current_user = wp_get_current_user();
         if ( 1 == $current_user->ID ) {
          // do staff.
         } else {
           // do staff.
         }
     }
    
  2. from https://stackoverflow.com/questions/8559759/find-out-if-a-user-is-logged-into-wordpress-from-id by cc-by-sa and MIT license