wordpress - how can i add comments to to a custom page -
i trying display comments of post in custom page in wordpress. want display comments including sub-comments. there way display comments of corresponding post?the_comments() shows comments in database. can use get_the_commets($args)?
get_comments() trick you.
$comments = get_comments(array('post_id'=>your_id));
will return array of comments particular post.
you can check get_comments page more options
Comments
Post a Comment