get_the_title_rss

Definition:
function get_the_title_rss() {}

Retrieve the current post title for the feed.

Return values

returns:Current post title.

Defined filters

  • the_title_rss
    apply_filters('the_title_rss', $title)

Source code

function get_the_title_rss() {

	$title = get_the_title();

	$title = apply_filters('the_title_rss', $title);

	return $title;

}

1861

No comments yet... Be the first to leave a reply!

Leave a comment