Title: wp_title_rss
Published: April 25, 2014
Last modified: February 24, 2026

---

# wp_title_rss( string $deprecated )

## In this article

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

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

Displays the blog title for display of the feed title.

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

 `$deprecated`stringrequired

Unused.

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

    ```php
    function wp_title_rss( $deprecated = '&#8211;' ) {
    	if ( '&#8211;' !== $deprecated ) {
    		/* translators: %s: 'document_title_separator' filter name. */
    		_deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
    	}

    	/**
    	 * Filters the blog title for display of the feed title.
    	 *
    	 * @since 2.2.0
    	 * @since 4.4.0 The `$sep` parameter was deprecated and renamed to `$deprecated`.
    	 *
    	 * @see get_wp_title_rss()
    	 *
    	 * @param string $wp_title_rss The current blog title.
    	 * @param string $deprecated   Unused.
    	 */
    	echo apply_filters( 'wp_title_rss', get_wp_title_rss(), $deprecated );
    }
    ```

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

## 󠀁[Hooks](https://developer.wordpress.org/reference/functions/wp_title_rss/?output_format=md#hooks)󠁿

 [apply_filters( ‘wp_title_rss’, string $wp_title_rss, string $deprecated )](https://developer.wordpress.org/reference/hooks/wp_title_rss/)

Filters the blog title for display of the feed title.

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

| Uses | 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.

  | 
| [__()](https://developer.wordpress.org/reference/functions/__/)`wp-includes/l10n.php` |

Retrieves the translation of $text.

  | 
| [_deprecated_argument()](https://developer.wordpress.org/reference/functions/_deprecated_argument/)`wp-includes/functions.php` |

Marks a function argument as deprecated and inform when it has been used.

  | 
| [apply_filters()](https://developer.wordpress.org/reference/functions/apply_filters/)`wp-includes/plugin.php` |

Calls the callback functions that have been added to a filter hook.

  |

[Show 2 more](https://developer.wordpress.org/reference/functions/wp_title_rss/?output_format=md#)
[Show less](https://developer.wordpress.org/reference/functions/wp_title_rss/?output_format=md#)

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

| Version | Description | 
| [4.4.0](https://developer.wordpress.org/reference/since/4.4.0/) | The optional `$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%2Ffunctions%2Fwp_title_rss%2F)
before being able to contribute a note or feedback.