I have found how to highlight comments made by author of the post. However, could not achieve to attach simple text saying this is author for each comment replied by the author of the post.
I have found how to highlight comments made by author of the post. However, could not achieve to attach simple text saying this is author for each comment replied by the author of the post.
Share Improve this question edited Mar 8, 2019 at 20:34 Benjamin Franklin asked Mar 4, 2019 at 16:00 Benjamin FranklinBenjamin Franklin 531 gold badge2 silver badges9 bronze badges1 Answer
Reset to default 0you can compare user_id to the author id, an then add your text.
global $post;
if ( $comment->user_id === $post->post_author ) { echo 'Author'; }