条件/检查:如果评论作者是帖子作者 时间: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 } ?> 文章导航