the_title_rss

The timeline below displays how wordpress function the_title_rss has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Displays the post title in the feed.
 *
 * @since 0.71
 */
function the_title_rss()
{
    echo get_the_title_rss();
}

WordPress Version: 4.1

/**
 * Display the post title in the feed.
 *
 * @since 0.71
 */
function the_title_rss()
{
    echo get_the_title_rss();
}

WordPress Version: 3.9

/**
 * Display the post title in the feed.
 *
 * @since 0.71
 * @uses get_the_title_rss() Used to retrieve current post title.
 */
function the_title_rss()
{
    echo get_the_title_rss();
}

WordPress Version: 3.7

/**
 * Display the post title in the feed.
 *
 * @package WordPress
 * @subpackage Feed
 * @since 0.71
 * @uses get_the_title_rss() Used to retrieve current post title.
 */
function the_title_rss()
{
    echo get_the_title_rss();
}