Ещё два хака для ускорения работы сайта на WordPress.
1 Избавляемся от emoji – в файл functions.php темы вставляем следующий код:
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_action( 'admin_print_styles', 'print_emoji_styles' );
2 Актуально для WooCommerce в отдельных случаях. Отключаем cart-fragments.min.js:
add_action( 'wp_print_scripts', 'de_script', 100 ); function de_script() { wp_dequeue_script( 'wc-cart-fragments' ); return true; }
Результаты в google page speed моего сайта (https://developers.google.com/speed/pagespeed/insights/?url=seodima.com&tab=desktop):
[alert-success]Для заказа услуги “Оптимизация скорости работы сайта” заполните форму справа. Или пишите на e-mail: [email protected] Стоимость услуги от $120 (в зависимости от количества работ на сайте).[/alert-success]