워드프레스 / 함수
Created 2022-11-12
Last Modified 2023-06-24
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()
- 모바일로 접속했는지 체크한다.