在二十四岁时,尝试将其放在您的孩子主题中:
function add_require_scripts_files() {
wp_enqueue_style('twentyfourteen-style', get_stylesheet_directory_uri().'/style.css', array(), '1.0.0', "all");
}
add_action( 'wp_enqueue_scripts', 'add_require_scripts_files' );
这将替换原始样式表,但使用您自己的版本。如果使用其他父主题,请查看原始的wp_enqueue_style标签以获取style.css,并在子主题中重复该标签。每次进行更改时,您都必须将1.0.0更改为另一个数字(因此,对于不经常进行更改的生产环境而言,这更好。)
要一起从脚本和样式中删除版本,请尝试以下操作:
// remove WP version tag from scripts and styles, best for dev environments
// by Adam Harley https://wordpress.org/support/topic/enqueueregister-script-remove-version
add_filter( 'script_loader_src', 'remove_src_version' );
add_filter( 'style_loader_src', 'remove_src_version' );
function remove_src_version ( $src ) {
global $wp_version;
$version_str = '?ver='.$wp_version;
$version_str_offset = strlen( $src ) - strlen( $version_str );
if( substr( $src, $version_str_offset ) == $version_str )
return substr( $src, 0, $version_str_offset );
}