is_home

函数
is_home ( No parameters )
返回值
  • (bool) Whether the query is for the blog homepage.
相关
  • is_front_page()
定义位置
相关方法
is_timelist_metais_authordisplay_themeis_attachment
引入
1.5.0
弃用
-

is_home: 如果当前页面是网站的博客首页,该函数返回true。博客主页是显示网站最新的博客文章的页面。

确定查询是否为博客主页。

博客主页是显示网站基于时间的博客内容的页面。

is_home()取决于网站的””首页显示”” 阅读设置’show_on_front’和’page_for_posts’。

如果一个静态页面被设置为网站的首页,这个函数将只在你设置为””文章页面””的页面上返回真。

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

function is_home() {
	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_home();
}

常见问题

FAQs
查看更多 >