pagespeedinsightsでのスコアが非常に低い
-
https://developers.google.com/speed/pagespeed/insights/
こちらのツールを使ってページ表示の速度を測定した所26という非常に低い数値が出ています。
この原因はテーマ側ではなくプラグインなどのせいなのでしょうか?
プラグインを減らしてみた所、特に変わりがなかったので改善の方法を教えて頂きたいです。
プラグイン全停止済み
WordPressのバージョン : 5.8.1
ご利用のサーバー名 : xserver
PHPのバージョン : PHP7.4.13
OS : windows10
ご利用のブラウザ : chorome
該当サイトのURL : https://sys-tem-labo.com/
-
横から失礼します。
バックアップを取ってから
子テーマのfunctions.phpに行を開けずに
/--------------------------------------------------------------/
/* レンダリングを妨げるリソースの除外 CSSのIDを遅延させる処理 /
/--------------------------------------------------------------*/
function my_dequeue_plugin_files(){
wp_dequeue_style('jquery-datatables');
wp_dequeue_style('datatables-buttons');
wp_dequeue_style('datatables-select');
wp_dequeue_style('admin-bar');
wp_dequeue_style('rtoc_style');
wp_dequeue_style('wp-block-library');
wp_enqueue_style('contact-form-7');
wp_enqueue_style('datatables-fixedcolumns');
wp_dequeue_style('datatables-responsive');
wp_dequeue_style('fontawesome-style');
wp_dequeue_style('swiper-style');
wp_enqueue_style('autoptimize-toolbar');
}
add_action( 'wp_enqueue_scripts', 'my_dequeue_plugin_files', 9999);
add_action('wp_head', 'my_dequeue_plugin_files', 9999);を足してみてください。
cssは遅延します。ちょっとは変わるかと。1 autoptimizeの使い方か設定が間違えているかと思います。
2 pdfmake.min.js (cdnjs.cloudflare.com) PDFを読み込む何かが重くしてます
3 vfs_fonts.js (cdnjs.cloudflare.com) その中で使われている文字のデザイン系のJsも 同罪です。
4 jquery.dataTables.min.js (cdn.datatables.net) その中で使われている Jsも同じです。
-
@graexs さん
こんにちは!
こちらのトピックが参考になるかと思います。
https://jin-forum.jp/topic/3397/ブログサイトのspeed-index評価について
テーマ自体もそうですが、多くの要素が関係しますので、
トピック内の参考リンクなどをご覧いただきつつ、
対応できそうなものがありましたら、graexsさんご自身でご対応いただけますと幸いです。お手数おかけいたしますが、よろしくお願い申し上げます。