get_index_template

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

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

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

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

function get_index_template() {
	return get_query_template( 'index' );
}

常见问题

FAQs
查看更多 >