注册 登录 欢迎您到模板精:织梦模板_dede模板_免费网站模板_网站源码下载

建站经验_免费网站模板_dede模板

为大家提供织梦模板,dede模板,织梦网站建设,织梦网站建设教程,免费网站模板,网站源码下载,织梦模板下载,织梦自适应模板,织梦建站教程。

当前位置:首页 > 建站经验 >

WordPress教程:替换文章的某些文字

免费网站模板 2020-09-17 11:10 建站经验 评论
 
有时候我们需要替换文章的某些文字为其它文字,比如给特定的文字加上链接,利用 SEO 和用户体验。
下边的代码即可实现这种功能:
/**
    *WordPress 替换文章的某些文字
    *http://www.adminbuy.cn/
*/
function Bing_content_str_replace($text){
    $replace_words = array(
        //添加要替换的文本,格式:'要替换的' => '替换到的内容'
        'adminbuy' => '<a href="http://www.adminbuy.cn">adminbuy.cn</a>',
        '魔客吧' => '<a href="http://www.adminbuy.cn">AB模版网</a>',
        'functions.php' => '<a href="http://www.adminbuy.cn/wordpress/">functions.php</a>'
    );
    return str_replace( array_keys( $replace_words ), $replace_words, $text );
}
add_filter( 'the_content', 'Bing_content_str_replace' );
add_filter( 'the_excerpt', 'Bing_content_str_replace' );