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');