Title: get_wp_title_rss
Published: April 25, 2014
Last modified: May 20, 2026

---

# apply_filters( ‘get_wp_title_rss’, string $title, string $deprecated )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#wp--skip-link--target)

Filters the blog title for use as the feed title.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#parameters)󠁿

 `$title`string

The current blog title.

`$deprecated`string

Unused.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#source)󠁿

    ```php
    return apply_filters( 'get_wp_title_rss', wp_get_document_title(), $deprecated );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/feed.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/feed.php#L118)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/feed.php#L118-L118)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#related)󠁿

| Used by | Description | 
| [get_wp_title_rss()](https://developer.wordpress.org/reference/functions/get_wp_title_rss/)`wp-includes/feed.php` |

Retrieves the blog title for the feed title.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/get_wp_title_rss/?output_format=md#changelog)󠁿

| Version | Description | 
| [4.4.0](https://developer.wordpress.org/reference/since/4.4.0/) | The `$sep` parameter was deprecated and renamed to `$deprecated`. | 
| [2.2.0](https://developer.wordpress.org/reference/since/2.2.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fget_wp_title_rss%2F)
before being able to contribute a note or feedback.