is_feed

函数
is_feed ( $feeds = '' )
参数
  • (string|string[]) $feeds Optional. Feed type or array of feed types to check against. Default empty.
    Required:
    Default: (empty)
返回值
  • (bool) Whether the query is for a feed.
定义位置
相关方法
is_embeddo_feedis_pagedadd_feedis_comment_feed
引入
1.5.0
弃用
-

is_feed: 如果当前页面是一个feed,例如RSS或Atom feed,该函数返回true。它可以用来定制feed页面的显示,这取决于feed的类型。

确定查询是否是针对feed的。

关于这个和类似的主题功能的更多信息,请查看《主题开发者手册》中的{@link Conditional Tags}文章。

function is_feed( $feeds = '' ) {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
		return false;
	}

	return $wp_query->is_feed( $feeds );
}

常见问题

FAQs
查看更多 >