get_template

函数
get_template ( No parameters )
返回值
  • (string) Template name.
定义位置
相关方法
get_404_templateget_tag_templateget_home_templateget_date_templateget_page_template
引入
1.5.0
弃用
-

get_template: 这个函数检索页面的主要模板文件的路径。它不接受任何参数,以字符串形式返回模板文件的路径。

检索活动主题的名称。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function get_template() {
/**
* Filters the name of the active theme.
*
* @since 1.5.0
*
* @param string $template active theme's directory name.
*/
return apply_filters( 'template', get_option( 'template' ) );
}
function get_template() { /** * Filters the name of the active theme. * * @since 1.5.0 * * @param string $template active theme's directory name. */ return apply_filters( 'template', get_option( 'template' ) ); }
function get_template() {
	/**
	 * Filters the name of the active theme.
	 *
	 * @since 1.5.0
	 *
	 * @param string $template active theme's directory name.
	 */
	return apply_filters( 'template', get_option( 'template' ) );
}

常见问题

FAQs
查看更多 >