function replace_infinite_words($content) {
$wordlists = Array(‘막걸리’ => ‘http://mak.kr’,
‘맥주’ => ‘http://www.beer.org/’,
‘소주’ => ‘http://soju.com/’,
);
foreach($wordlists as $key=>$value) {
$content = str_replace($key,’‘.$key.’‘,$content);
}
return $content;
}
add_filter(‘the_content’,’replace_infinite_words’);