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!