get_wp_title_rss WordPress Filter Hook
The get_wp_title_rss Wordpress hook is used to filter the RSS feed title. This hook is used by WordPress core and cannot be used by plugins or themes.
apply_filters( 'get_wp_title_rss', string $title , string $deprecated ) #
Filters the blog title for use as the feed title.
Parameters
- $title
(string)The current blog title.
- $deprecated
(string)Unused.
Source
File: wp-includes/feed.php
Changelog
Version | Description |
---|---|
4.4.0 | The $sep parameter was deprecated and renamed to $deprecated . |
2.2.0 | Introduced. |