WordPress函数:get_theme_file_uri 获取主题下静态文件路径

江河/ 2023年08月21日/ WordPress/ 浏览 544

函数原型:


get_theme_file_uri( string $file = '' ): string


获取主题下静态文件路径。


在 WordPress 模板文件中,曾看到过各种定位静态文件路径的方法。其实 WordPress 已经提供了封装好的方法。


在模板目录之前的样式表目录中进行搜索,这样从父主题继承的主题就可以覆盖一个文件。


函数源码:


function get_theme_file_uri( $file = '' ) {
	$file = ltrim( $file, '/' );

	if ( empty( $file ) ) {
		$url = get_stylesheet_directory_uri();
	} elseif ( file_exists( get_stylesheet_directory() . '/' . $file ) ) {
		$url = get_stylesheet_directory_uri() . '/' . $file;
	} else {
		$url = get_template_directory_uri() . '/' . $file;
	}

	return apply_filters( 'theme_file_uri', $url, $file );
}


从函数源码中可以看出,也是使用了 get_stylesheet_directory_uri、get_template_directory_uri  拼接路径。经过处理后,可以很好的兼容子主题。


包含钩子:


apply_filters( 'theme_file_uri', string $url, string $file )


使用举例:


wp_enqueue_style ( 'custom-font-awesome', get_theme_file_uri('/css/all.min.css'), array () );


发表评论

暂无评论,抢个沙发...

客服 工单