wordpress 는 글 의 문 자 를 자동 으로 바 꿉 니 다.

예 를 들 어 당신 의 블 로그 이름 이 바 뀌 었 으 니 오래된 글 에서 도 문안 을 바 꿀 수 있 기 를 바 랍 니 다.다음 코드 를 사용 하면 functions.php 로 쉽게 복사 할 수 있 습 니 다. 서류 면 됩 니 다.
function replace_text_wps($text){
    $replace = array(
        // 'WORD TO REPLACE' => 'REPLACE WORD WITH THIS'
        'wordpress' => '<a href="#">wordpress</a>',
        'excerpt' => '<a href="#">excerpt</a>',
        'function' => '<a href="#">function</a>'
    );
    $text = str_replace(array_keys($replace), $replace, $text);
    return $text;
}

add_filter('the_content', 'replace_text_wps');
add_filter('the_excerpt', 'replace_text_wps');

좋은 웹페이지 즐겨찾기