二十四年に、これをあなたの子供のテーマに入れてみてください:
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' );
これにより、元のスタイルシートが独自のバージョンに置き換えられます。別の親テーマを使用している場合は、style.cssの元のwp_enqueue_styleラベルを確認し、そのラベルを子テーマ内に複製します。変更を行うたびに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 );
}