get_wp_title_rss
函数
get_wp_title_rss ( $deprecated = '–' )
- 参数
-
-
(string)
$deprecated
Unused.- Required: 否
- Default: ‘–’
-
(string)
- 返回值
-
- (string) The document title.
- 定义位置
-
-
wp-includes/feed.php
, line 103
-
wp-includes/feed.php
- 引入
- 2.2.0
- 弃用
- –
检索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.' ), 'document_title_separator
' ) );
}
/**
* 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 );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。