get_author_template

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

get_author_template: 这个函数检索到当前主题的作者模板的路径。

在当前或父模板中检索作者模板的路径。

这个模板的层次结构看起来像:

1. author-{nicename}.php
2. author-{id}.php
3. author.php

这方面的一个例子是:

1. author-john.php
2. author-1.php
3. author.php

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

function get_author_template() {
	$author = get_queried_object();

	$templates = array();

	if ( $author instanceof WP_User ) {
		$templates[] = "author-{$author->user_nicename}.php";
		$templates[] = "author-{$author->ID}.php";
	}
	$templates[] = 'author.php';

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

常见问题

FAQs
查看更多 >