get_home_template

函数
get_home_template ( No parameters )
返回值
  • (string) Full path to home template file.
相关
  • get_query_template()
定义位置
相关方法
get_templateget_author_templateget_page_templateget_date_templateget_archive_template
引入
1.5.0
弃用
-

get_home_template: 这个函数用来检索当前WordPress主题的主模板文件的路径。主页模板文件通常用于在主页上显示博客文章。

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

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

function get_home_template() {
	$templates = array( 'home.php', 'index.php' );

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

常见问题

FAQs
查看更多 >