0
我有了這個代碼片段,在the_content(取代具體詞):WordPress的與鏈接內容的鏈接替換標籤字
function link_words($text) {
$replace = array(
'google' => '<a href="http://www.google.com">google</a>',
'computer' => '<a href="http://www.computer.com">computer</a>',
'keyboard' => '<a href="http://www.keyboard.com">keyboard</a>'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'link_words');
我想用get_the_tags()爲$替換數組,因此它會用指向其標記歸檔的鏈接替換特定的標記詞。
問題尚不清楚。給一些示例 – JYoThI