WordPress tutorial, Show comments from custom post type in wordpress. we shows comments in sidebar. But what to do for show comments for custom post type.
Show comments from custom post type in wordpress
It’s not well documented, but according to the codex, you can pass a ‘post_type’ variable in the get_comments function.
<?php $comments = get_comments('number=10&status=approve&post_type=YOUR_POST_TYPE'); foreach($comments as $comment) : // comment loop code will go here endforeach; ?>
Note: This code only useful after wordpress 3.1 version.
You have great knowledge