[Plugin: FD Feedburner Plugin] Feed for individual authors
-
I added the following code to fdfeedburner.php to get ir work for feeds for authors (blog.com/author/name/feed)
Look for:
// Redirect comment feed if ($feed == 'comments-rss2' || is_single() || $withcomments) { if ($comment_url != null) { header("Location: ".$comment_url); die; }
And add after:
} // Redirect author feed if ($feed == 'author-rss2' || is_single() || $withcomments) { if ($comment_url != null) { header("Location: ".$comment_url); die; }
It works for me: Feedburner is still there and I have individual feeds for authors.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: FD Feedburner Plugin] Feed for individual authors’ is closed to new replies.