get_wp_title_rss

函数
get_wp_title_rss ( $deprecated = '–' )
参数
  • (string) $deprecated Unused.
    Required:
    Default: '–'
返回值
  • (string) The document title.
定义位置
相关方法
wp_title_rssget_the_title_rssthe_title_rssget_the_titlewp_title
引入
2.2.0
弃用
-

get_wp_title_rss: 这是一个WordPress的函数,用于返回一个文章的标题,以便在RSS提要中使用: 该函数把一个文章的ID作为参数,并返回文章的标题,通过wp_title_rss过滤器过滤。

检索feed标题的博客标题。

function get_wp_title_rss( $deprecated = '–' ) {
	if ( '–' !== $deprecated ) {
		/* translators: %s: 'document_title_separator' filter name. */
		_deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
	}

	/**
	 * Filters the blog title for use as the feed title.
	 *
	 * @since 2.2.0
	 * @since 4.4.0 The `$sep` parameter was deprecated and renamed to `$deprecated`.
	 *
	 * @param string $title      The current blog title.
	 * @param string $deprecated Unused.
	 */
	return apply_filters( 'get_wp_title_rss', wp_get_document_title(), $deprecated );
}

常见问题

FAQs
查看更多 >