
如何列出MySQL数据库(分步代码教程)
bloginfo_rss ( $show = '' )
bloginfo_rss: 该函数与bloginfo类似,但用于输出RSS订阅的信息。
显示bloginfo函数的RSS容器。
你可以使用get_bloginfo()函数检索任何你能检索到的东西。所有的东西都将被剥离标签和字符转换,当值被检索到用于Feeds时。
function bloginfo_rss( $show = '' ) { /** * Filters the bloginfo for display in RSS feeds. * * @since 2.1.0 * * @see get_bloginfo() * * @param string $rss_container RSS container for the blog information. * @param string $show The type of blog information to retrieve. */ echo apply_filters( 'bloginfo_rss', get_bloginfo_rss( $show ), $show ); }