2016-08-29 67 views

回答

0

您可以使用該代碼。這可能有幫助。

<?php 
    global $current_user; 
    get_currentuserinfo(); 

    if (is_user_logged_in() && $current_user->ID == $post->post_author) { 
     get_like_dislike(); 
    } 
?> 
+0

感謝您的回答,但不是從我想從文章作者 –

+0

@YasirKhan隱藏當前用戶:意味着你想從筆者的帖子頁隱藏呢? author.php –

+0

它不是author.php頁面,但是我想隱藏它的作者帖子,但不是從其他人登錄用戶 –

0

您可以嘗試下面的代碼。以下代碼調用get_like_dislike已登錄用戶,但不適用於發佈作者。

global $current_user; 
if (is_user_logged_in() && $current_user->ID != $post->post_author) { 
     get_like_dislike(); 
    } 
+0

感謝@ pallavi,但它不工作 –

相關問題