How to display comments of a particular post in wordpress? -
i'm trying display comments of selected post in wordpress. how can display comments of particular post id?
first find out post_id of post want fetch comments from.
<?php // comments of post_id 5 $args = array('post_id' => 5); $comments = get_comments( $args ); // loop through comments foreach($comments $comment) : echo($comment->comment_author . '<br />' . $comment->comment_content); endforeach; ?>
Comments
Post a Comment