get_bloginfo_rss

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

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

  • get_bloginfo_rss
    apply_filters('get_bloginfo_rss', convert_chars($info)

Source code

function get_bloginfo_rss($show = '') {

	$info = strip_tags(get_bloginfo($show));

	return apply_filters('get_bloginfo_rss', convert_chars($info), $show);

}

1202

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: