Title: [Plugin: FD Feedburner Plugin] Feed for Author
Last modified: August 19, 2016

---

# [Plugin: FD Feedburner Plugin] Feed for Author

 *  [array064](https://wordpress.org/support/users/array064/)
 * (@array064)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/plugin-fd-feedburner-plugin-feed-for-author/)
 * To accomodating author feed into feedburner with this plugin, I added this code:
 *     ```
       // Get author
       	$author = null;
       	if ($wp->query_vars['author_name'] != null) {
       		$author = $wp->query_vars['author_name'];
       	}
       	if ($author) {
       		$feed_url .= '_author_'.$author;
       	}
       ```
   
 * After this line:
 *     ```
       // Get tag
       	$tag = null;
       	if ($wp->query_vars['tag'] != null) {
       		$tag = $wp->query_vars['tag'];
       	}
       	if ($options['feedburner_append_cats'] == 1 && $tag) {
       		$feed_url .= '_'.$tag;
       	}
       ```
   

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Thread Starter [array064](https://wordpress.org/support/users/array064/)
 * (@array064)
 * [17 years ago](https://wordpress.org/support/topic/plugin-fd-feedburner-plugin-feed-for-author/#post-1085579)
 * in file fdfeedbuner.php
 *  [Fabián](https://wordpress.org/support/users/fabdango/)
 * (@fabdango)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/plugin-fd-feedburner-plugin-feed-for-author/#post-1085825)
 * Awesome! I disabled the plugin because of that, I can now have it enabled again.
 * Thanks!
 *  [phmadore](https://wordpress.org/support/users/phmadore/)
 * (@phmadore)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-fd-feedburner-plugin-feed-for-author/#post-1085873)
 * I need code which will allow me to NOT redirect author feeds to feedburner. Help!
 *  [evanw](https://wordpress.org/support/users/evanw/)
 * (@evanw)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-fd-feedburner-plugin-feed-for-author/#post-1085878)
 * Same here, is there any way to use this plugin but still retain individual author
   feeds?
 * Thanks!
 *  [Lovedoodle](https://wordpress.org/support/users/lovedoodle/)
 * (@lovedoodle)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/plugin-fd-feedburner-plugin-feed-for-author/#post-1085896)
 * phmadore and evanw, here’s what I did to retain individual author feeds while
   using this plugin…
 * Open up the main plugin file (FeedBurner_FeedSmith_Plugin.php) and edit the function
   called ol_feed_redirect() starting on line 109. Just add a conditional `&& !is_author()`
   to the first portion of the if statement so it looks like this:
 *     ```
       function ol_feed_redirect() {
       	global $wp, $feedburner_settings, $feed, $withcomments;
               if (is_feed() && $feed != 'comments-rss2' && !is_single() && !is_author() && $wp->query_vars['category_name'] == '' && ($withcomments != 1) && trim($feedburner_settings['feedburner_url']) != '') {
       ```
   
 * That did the trick for me.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘[Plugin: FD Feedburner Plugin] Feed for Author’ is closed to new replies.

 * 5 replies
 * 5 participants
 * Last reply from: [Lovedoodle](https://wordpress.org/support/users/lovedoodle/)
 * Last activity: [16 years, 1 month ago](https://wordpress.org/support/topic/plugin-fd-feedburner-plugin-feed-for-author/#post-1085896)
 * Status: not a support question

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
