我有点想法,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');