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() ?>