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

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

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

/**
    *WordPress 替换文章的某些文字
    *https://www.dhaomu.com/
*/
function Bing_content_str_replace($text){
    $replace_words = array(
        //添加要替换的文本,格式:'要替换的' => '替换到的内容'
        'dhaomu' => '<a href="http://www.dhaomu.com" rel="external nofollow"  rel="external nofollow" >dhaomu.com</a>',
        '浩沐资源网' => '<a href="http://www.dhaomu.com" rel="external nofollow"  rel="external nofollow" >浩沐资源网</a>',
        'functions.php' => '<a href="https://www.dhaomu.com/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' );

声明: 本站仅提供资源学习下载,资源费用仅为赞助站长的整理费,不代表资源自身价值也不包含任何服务。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
本站提供的资源来自网络,版权争议与本站无关,所有内容及软件的文章仅限用于学习和研究目的。
如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。侵删请致信E-mail:duhaomu@163.com

浩沐资源网 wordpress技巧 WordPress教程:替换文章的某些文字 https://www.dhaomu.com/5464.html

相关文章

发表评论
暂无评论
  • 0 +

    访问总数

  • 0 +

    会员总数

  • 0 +

    文章总数

  • 0 +

    今日发布

  • 0 +

    本周发布

  • 0 +

    运行天数

浩沐资源网-打造全网优质免费教程资源分享网站!