欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

WordPress批量替换文章的某些文字

时间: 2020-09-16 11:14 阅读: 作者:素材无忧网

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

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

function Bing_content_str_replace($text){
$replace_words = array(
//添加要替换的文本,格式:'要替换的' => '替换到的内容'
'11px' => '<a href="http://www.11px.cn">电脑端</a>',
'm.11px' => '<a href="http://m.11px.cn">手机端</a>',
'functions.php' => '<a href="http://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' );


版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: WordPress批量替换文章的某些文字

标签:  
推荐文章
模板推荐