我一直在尋找這個,但沒有找到任何與我的需求相關的東西,我在我的主題中做了一個函數,請參閱下面的內容。如何從帖子作者隱藏功能,但不是來自logged_in用戶wordpress
if (is_user_logged_in()){
get_like_dislike();
}
如何隱藏從文章作者的功能,而不是從其他登錄的用戶在WordPress。
我一直在尋找這個,但沒有找到任何與我的需求相關的東西,我在我的主題中做了一個函數,請參閱下面的內容。如何從帖子作者隱藏功能,但不是來自logged_in用戶wordpress
if (is_user_logged_in()){
get_like_dislike();
}
如何隱藏從文章作者的功能,而不是從其他登錄的用戶在WordPress。
您可以使用該代碼。這可能有幫助。
<?php
global $current_user;
get_currentuserinfo();
if (is_user_logged_in() && $current_user->ID == $post->post_author) {
get_like_dislike();
}
?>
您可以嘗試下面的代碼。以下代碼調用get_like_dislike已登錄用戶,但不適用於發佈作者。
global $current_user;
if (is_user_logged_in() && $current_user->ID != $post->post_author) {
get_like_dislike();
}
感謝@ pallavi,但它不工作 –
感謝您的回答,但不是從我想從文章作者 –
@YasirKhan隱藏當前用戶:意味着你想從筆者的帖子頁隱藏呢? author.php –
它不是author.php頁面,但是我想隱藏它的作者帖子,但不是從其他人登錄用戶 –