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

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -