워드프레스 / 함수

current_user_can()

  • Returns whether the current user has the specified capability.
  • Administrator라면 123을 출력한다.
if ( current_user_can( 'administrator' ) ) {
  echo '123';
}

is_admin()은 백엔드에서만 작동된다고 한다.

has_post_thumbnail()

  • 썸네일이 존재하는지 체크한다.

wp_is_mobile()

  • 모바일로 접속했는지 체크한다.
같은 카테고리의 다른 글