使用$wp_scripts
, 这是一个global
变量获取已注册脚本的版本。
add_filter( \'script_loader_tag\', \'script_handler\', 10, 3 );
function script_handler( $tag, $handle, $src ) {
// the following global contains all the information you need
global $wp_scripts;
$ver = $wp_scripts->registered[ $handle ]->ver;
// do your thing
}
注意,这是示例性的。