WordPress Version: 6.1
/**
* Displays the post title in the feed.
*
* @since 0.71
*/
function the_title_rss()
{
echo get_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.
/**
* Displays the post title in the feed.
*
* @since 0.71
*/
function the_title_rss()
{
echo get_the_title_rss();
}
/**
* Display the post title in the feed.
*
* @since 0.71
*/
function the_title_rss()
{
echo get_the_title_rss();
}
/**
* 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();
}
/**
* 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();
}