bloginfo_rss

Definition:
function bloginfo_rss($show = '') {}

Display RSS container for the bloginfo function.
You can retrieve anything that you can using the get_bloginfo() function. Everything will be stripped of tags and characters converted, when the values are retrieved for use in the feeds.

Parameters

  • string $show: See get_bloginfo() for possible values.

Defined filters

  • bloginfo_rss
    apply_filters('bloginfo_rss', get_bloginfo_rss($show)

Source code

function bloginfo_rss($show = '') {

	echo apply_filters('bloginfo_rss', get_bloginfo_rss($show), $show);

}

565

No comments yet... Be the first to leave a reply!

Leave a comment