get_bloginfo_rss

函数
get_bloginfo_rss ( $show = '' )
参数
  • (string) $show See get_bloginfo() for possible values.
    Required:
    Default: (empty)
返回值
  • (string)
相关
  • get_bloginfo()
定义位置
相关方法
bloginfo_rssget_bloginfoget_blog_statusget_blog_postget_blog_list
引入
1.5.1
弃用
-

get_bloginfo_rss: 该函数检索当前站点或多站点网络中的当前站点的父站点的RSS feed URL。

检索bloginfo函数的RSS容器。

你可以使用get_bloginfo()函数检索任何你能检索到的东西。所有的东西都将被剥离标签和字符转换,当值被检索到用于Feeds时。

function get_bloginfo_rss( $show = '' ) {
	$info = strip_tags( get_bloginfo( $show ) );
	/**
	 * Filters the bloginfo for use in RSS feeds.
	 *
	 * @since 2.2.0
	 *
	 * @see convert_chars()
	 * @see get_bloginfo()
	 *
	 * @param string $info Converted string value of the blog information.
	 * @param string $show The type of blog information to retrieve.
	 */
	return apply_filters( 'get_bloginfo_rss', convert_chars( $info ), $show );
}

常见问题

FAQs
查看更多 >