{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

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

有时候我们需要替换文章的某些文字为其它文字,比如给特定的文字加上链接,利用 SEO 和用户体验。

下边的代码即可实现这种功能:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

function Bing_content_str_replace($text){

    $replace_words = array(

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

        '精准像素' => '<a href="http://www.11px.cn">精准像素</a>',

        '帝国cms' => '<a href="http://www.11px.cn">帝国cms</a>',

        'functions.php' => '<a href="https://www.11px.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' );



资源均来自第三方,谨慎下载,前往第三方网站下载


米微资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:WordPress教程替换文章的某些文字
喜欢 ()分享 (0)