Attaching author tag to the comment

admin2025-06-02  1

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 badges
Add a comment  | 

1 Answer 1

Reset to default 0

you can compare user_id to the author id, an then add your text.

global $post;
if ( $comment->user_id === $post->post_author ) { echo 'Author'; }
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748828207a314059.html

最新回复(0)