do_action( 'rss2_item' )
Fires at the end of each RSS2 feed item.
More Information More Information
The rss2_item action hook is triggered immediately after the default output of an rss2 feed.
This hook has no parameters and no return values. It can be used to echo data into the feed if necessary.
This hook is not dependent on your theme. It can be called within your theme’s functions.php file or from a plugin.
Source Source
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Add an image element for each post
Adds an image node to your RSS2 feeds
(From Codex)
Add a custom field element for each post
Adds a node from a custom field to your RSS2 feeds using get_post_meta().
Note: Custom elements like the one in this example are not a part of the RSS 2.0 specification, so adding it will mean your feed will technically be invalid RSS 2.0. Few, if any, RSS readers will make any use of the custom element.