From d6ec4672a7861105f9aa61dfcef6b6081e606e5a Mon Sep 17 00:00:00 2001 From: dougal Date: Tue, 22 Nov 2005 15:01:32 +0000 Subject: [PATCH] Fetch related post-meta for each comment item. (#1745) git-svn-id: http://svn.automattic.com/wordpress/trunk@3196 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-commentsrss2.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-commentsrss2.php b/wp-commentsrss2.php index 266588fd2..8de760d5c 100644 --- a/wp-commentsrss2.php +++ b/wp-commentsrss2.php @@ -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); ?> by: <?php comment_author_rss() ?>