@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
<?php
/**
 * スコア改善用カスタマイズ：アイキャッチの遅延読み込み排除と最適化
 */

// 1. アイキャッチ画像にSWELL独自のLazyload（lazysizes）を適用させない
add_filter( 'swell_is_load_lazy_eyecatch', '__return_false' );

// 2. 記事ページのメイン画像の読み込み優先度を最大化する
add_filter( 'wp_get_attachment_image_attributes', function( $attr ) {
    if ( is_single() ) {
        $attr['loading'] = 'eager';        // 遅延させず即座に読み込む
        $attr['fetchpriority'] = 'high';   // ブラウザに最優先で取得するよう指示
        if (isset($attr['class'])) {
            $attr['class'] .= ' skip-lazy'; // 他のプラグインの遅延読み込みも回避
        }
    }
    return $attr;
}, 10 );
