批量替换WordPress文章中的文字的方法
将下面代码加到主题的functions.php文件中:
functionreplace_text_wps($text){
$replace=array(
//'关键词'=>'替换的关键词' 例如:
'wordpress'=>'<ahref="#">wordpress</a>',
'excerpt'=>'<ahref="#">excerpt</a>',
'function'=>'<ahref="#">function</a>'
);
$text=str_replace(array_keys($replace),$replace,$text);
return$text;
}
add_filter('the_content','replace_text_wps');
add_filter('the_excerpt','replace_text_wps');
原文链接:http://www.172u.cn/archives/3240.html
functionreplace_text_wps($text){
$replace=array(
//'关键词'=>'替换的关键词' 例如:
'wordpress'=>'<ahref="#">wordpress</a>',
'excerpt'=>'<ahref="#">excerpt</a>',
'function'=>'<ahref="#">function</a>'
);
$text=str_replace(array_keys($replace),$replace,$text);
return$text;
}
add_filter('the_content','replace_text_wps');
add_filter('the_excerpt','replace_text_wps');
原文链接:http://www.172u.cn/archives/3240.html
还没人赞这篇日记
热门话题 · · · · · · ( 去话题广场 )
- 端午吃什么1227篇内容 · 19.1万次浏览
- 想做的事,别等“以后”1.0万+篇内容 · 421.8万次浏览
- 让人生变开阔的方法1.0万+篇内容 · 17.0万次浏览
- 端午去哪儿571篇内容 · 9.9万次浏览
- 重新养一遍自己,可真好啊1745篇内容 · 217.2万次浏览
- 假期必备书影音清单471篇内容 · 27.6万次浏览
- 哪个瞬间你发现自己被琐碎地爱着?281篇内容 · 91.0万次浏览
- 你有哪些“终不似,少年游”的经历?3049篇内容 · 74.0万次浏览