Ticket #1282: wp-commentsrss2_patch.txt
| File wp-commentsrss2_patch.txt, 367 bytes (added by , 21 years ago) |
|---|
| Line | |
|---|---|
| 1 | 52c52,57 |
| 2 | < <title>by: <?php comment_author_rss() ?></title> |
| 3 | --- |
| 4 | > <title><?php if ( (! is_single()) || (! is_page()) ) { |
| 5 | > $title = get_the_title($comment->comment_post_ID); |
| 6 | > $title = apply_filters('the_title', $title); |
| 7 | > $title = apply_filters('the_title_rss', $title); |
| 8 | > echo "Comment on $title"; |
| 9 | > } ?> by: <?php comment_author_rss() ?></title> |