gpt4 book ai didi

php - Wordpress:检查前端的自定义用户角色

转载 作者:行者123 更新时间:2023-12-04 02:18:17 24 4
gpt4 key购买 nike

我只是想在用户具有自定义 用户角色时显示一些消息。它适用于 native 用户角色,但不适用于自定义用户角色。这是我的代码:

<?php
$user_ID = get_current_user_ID();
$user = new WP_User( $user_ID );
$current_user = $user->roles[0];

if( $current_user == 'client' ){
echo 'hello client';
} else {
// do nothing
}
?>

欢迎任何帮助,谢谢!

最佳答案

你可以试试这个:

if ( is_user_logged_in() )
{
global $current_user;
$user_role = $current_user->roles[0];

if($user_role == 'client')
{
// do something
}
}

is_user_logged_in() 用于检测用户是否登录

关于php - Wordpress:检查前端的自定义用户角色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32734472/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com