wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_set_template_globals › WordPress Function

Since6.5.0
已弃用n/a
wp_set_template_globals ( 没有参数 )
定义在:
文档:

Set up the globals used for template loading.



源码

function wp_set_template_globals() {
	global $wp_stylesheet_path, $wp_template_path;

	$wp_stylesheet_path = get_stylesheet_directory();
	$wp_template_path   = get_template_directory();
}