Answers for "check if user role is logged in wordpress"

PHP
2

wordpress check user against user roles

$user = wp_get_current_user();
if ( in_array( 'author', (array) $user->roles ) ) {
    //The user has the "author" role
}
Posted by: Guest on February-13-2021

Code answers related to "check if user role is logged in wordpress"

Browse Popular Code Answers by Language