/**
* 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.
*/ echoapply_filters( 'wp_title_rss', get_wp_title_rss(), $deprecated); }
/**
* Retrieves the current post title for the feed.
*
* @since 2.0.0
*
* @return string Current post title.
*/ functionget_the_title_rss(){ $title = get_the_title();