条件/检查:如果评论作者是帖子作者

时间:2016-12-23 作者:Pete

我正在尝试编辑我的评论。php,以便有条件地显示//do something 如果评论作者也是文章作者。我不知道我在做什么,但我已经设法把这片垃圾扔在一起作为开始(真是个笑话)。。。

<?php if ( get_comment_author(global $wp_get_current_commenter();   wp_get_current_commenter() && $wp_get_current_commenter()->ID && == $post->post_author)) { ?>
// do something
<?php } ?>
我读过this link 但我不太清楚。

1 个回复
最合适的回答,由SO网友:Pete 整理而成
<?php if ( $post = get_post($post_id) ) : ?>
<?php if ( $comment->user_id === $post->post_author ) :?>
//do something
<?php endif;?>
<?php endif;?>

Also.

<?php 
global $post;
if( $comment->user_id === $post->post_author ) {
// do something
}
?>

相关推荐

Get_the_Author_meta()和Get_User_meta()有什么不同?

我有个问题:get_the_author_meta() 返回元get_user_meta() 对于相同的元键返回false,我不知道为什么会发生这种情况。关于用户元数据,我应该何时使用其中一种?I tried this:get_the_author_meta(\'afzfp_user_status\', $user->ID); get_user_meta(\'afzfp_user_status\', $user->ID, true); It returns:String \"t