matt
matt

Reputation: 44303

Wordpress RSS feed with custom description?

Is there a nice and simple way to add a filter to the wordpress RSS feed functions? I want to insert some custom text into the <description> tag of my RSS2 feed and the <summary> tag of my Atom feed. Is there any easy way to do that?

I don't have templates for my feeds in my theme (like wp-rss2.php or wp-atom.php). I've just added the normal

<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />

to my <head>

Any idea how I can influence the description and summary of my feeds?

Upvotes: 1

Views: 5899

Answers (1)

Mike Hudson
Mike Hudson

Reputation: 1190

There's several options depending on your comfort/experience level:

Upvotes: 5

Related Questions