我想在我的博客中使用联盟链接。这是我的会员职能。
function replace_text_wps($text){
$replace = array(
'çanta' => '<a href="http://mysite.com/myafflink">çanta</a>',
'hediye' => '<a href="http://www.hediyelerdunyasi.com.tr/">hediye</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');
一切正常。但是存在一个问题。如果这个单词包含了一个html标签,如&#34; img&#34;和&#34; a&#34;功能也将单词更改为会员链接。出于这个原因,我的图片链接和普通链接都被破坏了。
我该怎么办?我怎样才能过滤掉不在里面的单词&#34; a&#34;和&#34; img&#34;标签?