【发布时间】:2016-09-29 16:51:43
【问题描述】:
我试图将帖子内容中的关键字替换为链接,但是,我意识到 img 标签的 alt 属性中的关键字也受到了影响。 有解决方案吗?顺便说一句,我在functions.php中使用的代码:
function replace_text_wp($text){
$replace = array(
'keyword1' => '<a href="http://demo.com/" rel="bookmark" title="keyword1">keyword1</a>',
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wp');
【问题讨论】: