Title: 's Replies | WordPress.org

---

# wlrdq

  [  ](https://wordpress.org/support/users/wlrdq/)

 *   [Profile](https://wordpress.org/support/users/wlrdq/)
 *   [Topics Started](https://wordpress.org/support/users/wlrdq/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wlrdq/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wlrdq/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wlrdq/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wlrdq/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wlrdq/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Add author name to title in RSS feed](https://wordpress.org/support/topic/add-author-name-to-title-in-rss-feed/)
 *  [wlrdq](https://wordpress.org/support/users/wlrdq/)
 * (@wlrdq)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/add-author-name-to-title-in-rss-feed/#post-1126970)
 * I’m pretty new to WordPress, so someone may have a less intrusive way to do it.
 * Looking at the code, I see the following:
    **…/wp-includes/feed-rss2.php**
 *     ```
       <title><?php the_title_rss() ?></title>
       <link><?php the_permalink_rss() ?></link>
       <comments><?php comments_link(); ?></comments>
       <pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?></pubDate>
       <dc:creator><?php the_author() ?></dc:creator>asdfasdf
       ```
   
 * I think you could change the title tag to do what you want. Something like this:
 *     ```
       <title><?php the_author() ?> - <?php the_title_rss() ?></title>
       ```
   

Viewing 1 replies (of 1 total)