我正在尝试根据 WordPress 中的用户名显示一条消息。我正在使用的代码:
$current_user = wp_get_current_user();
if( 'user1' && 'user2' == $current_user->user_login ){
echo "discount 20%";
}
else {
echo "you could save 20% if you are a VIP customer";
}
如果我将上面的代码与&&运算符一起使用,discount 20%则仅显示为user2
如果我使用上面的代码 with ||operatordiscount 20%显示给所有用户,即使用户未登录。
代码与 ||
$current_user = wp_get_current_user();
if( 'user1' || 'user2' == $current_user->user_login ){
echo "discount 20%";
}
else {
echo "you could save 20% if you are a VIP customer";
}
我会及时添加用户名。折扣 20% 应仅显示我将添加的用户名。它不应显示给其他或访客/未登录用户。
我在这里做错了什么?