40

我对 WordPress 相当陌生。在我的主页上,我有一个导航栏,我只想向以用户身份登录的人显示。

在我header.php的功能is_logged_in似乎不起作用。

我想在我的header.php文件中放置一个条件来检查用户是否已登录(然后显示导航)。

任何意见将是有益的。

4

6 回答 6

77

使用is_user_logged_in功能:

if ( is_user_logged_in() ) {
   // your code for logged in user 
} else {
   // your code for logged out user 
}
于 2013-11-13T06:42:28.487 回答
5

尝试以下对我来说很好的代码

global $current_user;
get_currentuserinfo();

然后,使用以下代码检查用户是否已登录。

if ($current_user->ID == '') { 
    //show nothing to user
}
else { 
    //write code to show menu here
}
于 2013-11-13T12:13:57.623 回答
4

get_current_user_id()将返回当前用户 ID(整数),如果用户未登录,则返回 0。

if (get_current_user_id()) {
   // display navbar here
}

此处获取更多详细信息get_current_user_id()

于 2019-02-08T14:19:27.583 回答
3

示例:根据用户是否登录显示不同的输出。

<?php

if ( is_user_logged_in() ) {
    echo 'Welcome, registered user!';
} else {
    echo 'Welcome, visitor!';
}

?>
于 2020-05-03T12:35:40.493 回答
1

这个问题来自 Chrome 的延迟更新数据请求。第一次进入主页。带有空数据的 Chrome 请求。然后你进入登录页面并登录。当你回到主页时Chrome懒惰地更新cookie数据请求,因为这个域与你第一次访问时相同。 解决方案:为 home url 添加参数。这有助于 Chrome 意识到这个请求需要更新 cookie 才能调用服务器。

在仪表板页面添加

<?php 
$track = '?track='.uniqid();
?>
<a href="<?= get_home_url(). $track ?>"> <img src="/img/logo.svg"></a>
于 2019-10-21T06:55:29.543 回答
0

我觉得。当访客启动页面,但管理员未登录时,我们不会显示任何内容,例如聊天。

add_action('init', 'chat_status');

function chat_status(){

    if( get_option('admin_logged') === 1) { echo "<style>.chat{display:block;}</style>";}
        else { echo "<style>.chat{display:none;}</style>";}

}



add_action('wp_login', function(){

    if( wp_get_current_user()->roles[0] == 'administrator' ) update_option('admin_logged', 1);
});


add_action('wp_logout', function(){
    if( wp_get_current_user()->roles[0] == 'administrator' ) update_option('admin_logged', 0);
});
于 2016-12-02T13:05:29.633 回答