对于WordPress文章中出现的一些文字或是关键字,我们想替换成其它的,或是给它加上超链接和颜色之类的,千万不要想着去整数据库,那样太麻烦了,写一个替换函数,再通过对应在勾子,就能轻松实现。
//替换字符 function to_replace_text($text){
$replace = array(
// '替换前的' => '替换后的' 'hello' => 'hello',
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'to_replace_text'); //正文替换//add_filter('the_excerpt', 'to_replace_text'); //摘要替换//add_filter('comment_text', 'to_replace_text'); //评论替换
作者: Ken
本文来源: http://www.zhutihome.com/7128.html
如果给你带来帮助,欢迎微信或支付宝扫一扫,赞一下。