Hızlı bir yükseliş isterseniz aşağıdaki kodu yedeklerinizi aldıktan sonra functions.php dosyasının en altına ekleyin. Giriste 1 sn lik bir bozulma sonrası puanınızda gözle görülür bir artış olacaktır diye düşünüyorum.
// Version parametresini kaldır kodu başlangıcı
function vc_remove_wp_ver_css_js( $src ) {
if ( strpos( $src, 'ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
add_filter( 'script_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
// Version parametresini kaldır kodu sonu
// JS dosyalarını footera taşıma kodu başlangıcı.
function remove_head_scripts() {
remove_action('wp_head', 'wp_print_scripts');
remove_action('wp_head', 'wp_print_head_scripts', 9);
remove_action('wp_head', 'wp_enqueue_scripts', 1);
add_action('wp_footer', 'wp_print_scripts', 5);
add_action('wp_footer', 'wp_enqueue_scripts', 5);
add_action('wp_footer', 'wp_print_head_scripts', 5); }
add_action( 'wp_enqueue_scripts', 'remove_head_scripts' );
// JS dosyalarını footera taşıma kodu sonu.
İlgili dosyanın yedeğini almayı unutmayın:)