get_bloginfo_rss filter-hook . WP 2.2.0
Filters the bloginfo for use in RSS feeds.
Usage
add_filter( 'get_bloginfo_rss', 'filter_function_name_5069', 10, 2 ); function filter_function_name_5069( $info, $show ){ // filter... return $info; }
- $info(string)
- Converted string value of the blog information.
- $show(string)
- The type of blog information to retrieve.
Changelog
Since 2.2.0 | Introduced. |
Where the hook is called
get_bloginfo_rss
wp-includes/feed.php 40
return apply_filters( 'get_bloginfo_rss', convert_chars( $info ), $show );