get_the_title_rss

Advertisement

Summery Summery

Retrieve the current post title for the feed.

Syntax Syntax

get_the_title_rss()

Return Return

(string) Current post title.

Source Source

File: wp-includes/feed.php

 *
 * @return string Current post title.
 */
function get_the_title_rss() {
	$title = get_the_title();

	/**
	 * Filters the post title for use in a feed.
	 *
	 * @since 1.2.0
	 *
	 * @param string $title The current post title.
	 */

Advertisement

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Advertisement

Leave a Reply