Fetch related post-meta for each comment item. (#1745)
git-svn-id: http://svn.automattic.com/wordpress/trunk@3196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ac47eb038c
commit
d6ec4672a7
|
@ -46,6 +46,9 @@ if (have_posts()) :
|
|||
// this line is WordPress' motor, do not delete it.
|
||||
if ($comments) {
|
||||
foreach ($comments as $comment) {
|
||||
// Some plugins may need to know the metadata
|
||||
// associated with this comment's post:
|
||||
get_post_custom($comment->comment_post_ID);
|
||||
?>
|
||||
<item>
|
||||
<title>by: <?php comment_author_rss() ?></title>
|
||||
|
|
Loading…
Reference in New Issue