/**

    *WordPress 替换文章的某些文字

    *https://www.weixiaoduo.com/content-str-replace/

*/

functionBing_content_str_replace($text){

    $replace_words=array(

        //添加要替换的文本,格式:'要替换的' => '替换到的内容'

        '薇晓朵'=>'<a href="http://www.weixiaoduo.com"> 薇晓朵</a>',

        '斌果'=>'<a href="http://www.bgbk.org"> 斌果</a>',

        'functions.php'=>'<a href="https://www.weixiaoduo.com/functions-php-flie/">functions.php</a>'

    );

    returnstr_replace(array_keys($replace_words),$replace_words,$text);

}

add_filter('the_content','Bing_content_str_replace');

add_filter('the_excerpt','Bing_content_str_replace');