我有一些想法,O 将在我的 functions.php 上创建 2 个不同的变量。例如;
$words = array('text','text2','text3');
$urls = array('url.com','url2.com','url3.com');
现在我想用这个,与 the_content(); 功能。我为此找到了一些插件,例如 Automattic Seo Links 等。但我真的不需要为此进行更多配置。我只想在内容区域中链接一些可链接的单词。
我用str_replace
方法尝试过,但它不适用于画廊喊代码和其他一些短代码设置。
有人可以帮我吗?或者有什么想法?
解决了 。
function replace_content($content)
{
$find =
array(
"word1",
"word2",
"word3",
"word4",
);
$replace =
array(
"url.com",
"url2.com",
"url3.com",
"url4.com",
);
$content = str_replace($find, $replace, $content);
return $content;
}
add_filter('the_content','replace_content');