본문 바로가기
워드프레스

워드프레스 https://늦게 적용해서 폰트에 http://가 됫을 때

by 뉴봉 2025. 9. 19.

플러그인 스니펫 설치 후, php 만들어서 아래 코드 추가 

 

add_action('init', function() {
    ob_start(function($buffer) {
        return str_replace(
            'http://도메인주소/wp-content/uploads/fonts/',
            'https:// 도메인주소 /wp-content/uploads/fonts/',
            $buffer
        );
    });
});
add_action('shutdown', function() {
    if (ob_get_length()) ob_end_flush();
});