get_front_page_template

函数
get_front_page_template ( No parameters )
返回值
  • (string) Full path to front page template file.
相关
  • get_query_template()
定义位置
相关方法
get_page_templateget_paged_templateget_page_templatesget_tag_templateget_page_template_slug
引入
3.0.0
弃用
-

get_front_page_template: 这个函数用来检索当前WordPress主题的首页模板文件的路径。前端页面模板文件用于显示网站的静态前端页面。

检索当前或父模板中的首页模板路径。

模板层次和模板路径可以通过{@see ‘$type_template_hierarchy’}和{@see ‘$type_template’}动态钩子过滤。和{@see ‘$type_template’}动态钩子,其中`$type`是’frontpage’。

function get_front_page_template() {
	$templates = array( 'front-page.php' );

	return get_query_template( 'frontpage', $templates );
}

常见问题

FAQs
查看更多 >