get_the_title_rss()

最后更新于:2021-11-27 02:58:20

get_the_title_rss()

Retrieve the current post title for the feed.

响应

(string) Current post title.

源文件

文件: gc-includes/feed.php

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 );
}