is_front_page

函数
is_front_page ( No parameters )
返回值
  • (bool) Whether the query is for the front page of the site.
定义位置
相关方法
is_pageis_plugin_pageis_pagedis_countableis_tag
引入
2.5.0
弃用
-

is_front_page: 如果当前页面是网站的首页,该函数返回true。前台页面是网站的主页面,当有人访问网站时就会显示。

确定查询是否为网站的首页。

这是针对在你的网站的主URL上显示的内容。

取决于网站的””首页显示”” 阅读设置’show_on_front’和’page_on_front’。

如果你为网站的首页设置了一个静态页面,在查看该页面时,这个函数将返回true。

否则与@see is_home()相同。

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

function is_front_page() {
	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_front_page();
}

常见问题

FAQs
查看更多 >