Skip to:
Content

bbPress.org

Ticket #1816: rss2.php.diff

File rss2.php.diff, 655 bytes (added by netweb, 13 years ago)

Remove post author from RSS item title

  • rss2.php

    source:branches/1.1/bb-templates/kakumei/rss2.php@2437
     
    2121
    2222<?php foreach ( (array) $posts as $bb_post ) : ?>
    2323                <item>
    24                         <title><?php post_author(); ?> <?php _e( 'on' ); ?> "<?php topic_title( $bb_post->topic_id ); ?>"</title>
     24                        <title><?php topic_title( $bb_post->topic_id ); ?></title>
    2525                        <link><?php post_link(); ?></link>
    2626                        <pubDate><?php bb_post_time( array( 'format' => 'D, d M Y H:i:s +0000', 'localize' => false ) ); ?></pubDate>
    2727                        <dc:creator><?php post_author(); ?></dc:creator>