wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_the_title_rss › WordPress Function

Da2.0.0
Deprecaton/a
get_the_title_rss ( Nessun parametro )
Ritorna:
  • (string) Current post title.
Definito a:
Codex:

Retrieves the current post title for the feed.



Sorgenti

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.
	 */
	return apply_filters( 'the_title_rss', $title );
}