type:any

wordpressでsrcsetの値をルート相対にする

{ category: "Front-end" }

こちら参考にルート相対に全部のパスを変更する関数に書き直しました!
https://it-soudan.com/how-to-change-srcset-on-wordpress/
書き方悪かったらご指摘ください!一応、成立はしています。
function filter_wp_calculate_image_srcset($sources, $size_array, $image_src, $image_meta, $attachment_id) {
    foreach ($sources as $source) {
        $previos_url = $source['url'];
        if (preg_match('/^http(s)?:\/\/[^\/\s]+(.*)$/', $previos_url, $match)) {
            $url = $match[2];
            $sources[$source['value']]['url'] = $url;
        }
    }
    return $sources;
}
add_filter('wp_calculate_image_srcset', 'filter_wp_calculate_image_srcset', 10, 5);