포스팅 안에 특정한 단어가 있을시 자동으로 링크가 생성되게 하는 플러그인이 없을까요? – 한국워드프레스사용자모임 https://kopress.kr/topic/%ed%8f%ac%ec%8a%a4%ed%8c%85-%ec%95%88%ec%97%90-%ed%8a%b9%ec%a0%95%ed%95%9c-%eb%8b%a8%ec%96%b4%ea%b0%80-%ec%9e%88%ec%9d%84%ec%8b%9c-%ec%9e%90%eb%8f%99%ec%9c%bc%eb%a1%9c-%eb%a7%81%ed%81%ac%ea%b0%80-%ec/feed Wed, 16 Jul 2025 09:41:46 +0000 https://bbpress.org/?v=2.6.9 ko-KR https://kopress.kr/topic/%ed%8f%ac%ec%8a%a4%ed%8c%85-%ec%95%88%ec%97%90-%ed%8a%b9%ec%a0%95%ed%95%9c-%eb%8b%a8%ec%96%b4%ea%b0%80-%ec%9e%88%ec%9d%84%ec%8b%9c-%ec%9e%90%eb%8f%99%ec%9c%bc%eb%a1%9c-%eb%a7%81%ed%81%ac%ea%b0%80-%ec/#post-4387 <![CDATA[포스팅 안에 특정한 단어가 있을시 자동으로 링크가 생성되게 하는 플러그인이 없을까요?]]> https://kopress.kr/topic/%ed%8f%ac%ec%8a%a4%ed%8c%85-%ec%95%88%ec%97%90-%ed%8a%b9%ec%a0%95%ed%95%9c-%eb%8b%a8%ec%96%b4%ea%b0%80-%ec%9e%88%ec%9d%84%ec%8b%9c-%ec%9e%90%eb%8f%99%ec%9c%bc%eb%a1%9c-%eb%a7%81%ed%81%ac%ea%b0%80-%ec/#post-4387 Mon, 18 Apr 2011 15:04:44 +0000 JuneTo 안녕하세요!
포스팅이나 페이지 안에 특정한 단어가 있을시에
그 단어에 대한 특정주소로 이동되게 링크가 생성되는 플러그 인이 있는지 알고 싶습니다.

막걸리 라는 단어에 http://mak.kr 로 링크가 되게 등록을 해놓으면

블로그 안에 막걸리 라는 모든 단어에 http://mak.kr 이라는 링크가 생성되게 말입니다. 엉엉엉 ㅠㅠ

]]>
https://kopress.kr/topic/%ed%8f%ac%ec%8a%a4%ed%8c%85-%ec%95%88%ec%97%90-%ed%8a%b9%ec%a0%95%ed%95%9c-%eb%8b%a8%ec%96%b4%ea%b0%80-%ec%9e%88%ec%9d%84%ec%8b%9c-%ec%9e%90%eb%8f%99%ec%9c%bc%eb%a1%9c-%eb%a7%81%ed%81%ac%ea%b0%80-%ec/#post-4388 <![CDATA[Reply To: 포스팅 안에 특정한 단어가 있을시 자동으로 링크가 생성되게 하는 플러그인이 없을까요?]]> https://kopress.kr/topic/%ed%8f%ac%ec%8a%a4%ed%8c%85-%ec%95%88%ec%97%90-%ed%8a%b9%ec%a0%95%ed%95%9c-%eb%8b%a8%ec%96%b4%ea%b0%80-%ec%9e%88%ec%9d%84%ec%8b%9c-%ec%9e%90%eb%8f%99%ec%9c%bc%eb%a1%9c-%eb%a7%81%ed%81%ac%ea%b0%80-%ec/#post-4388 Wed, 20 Apr 2011 04:57:14 +0000 helloworld1987 http://wordpress.org/support/topic/auto-link-specific-word-in-post

가장 아래 답변에 보면 functions.php 에 배열로 지정한 후 str_replace로 링크를 걸어주네요.

]]>
https://kopress.kr/topic/%ed%8f%ac%ec%8a%a4%ed%8c%85-%ec%95%88%ec%97%90-%ed%8a%b9%ec%a0%95%ed%95%9c-%eb%8b%a8%ec%96%b4%ea%b0%80-%ec%9e%88%ec%9d%84%ec%8b%9c-%ec%9e%90%eb%8f%99%ec%9c%bc%eb%a1%9c-%eb%a7%81%ed%81%ac%ea%b0%80-%ec/#post-4389 <![CDATA[Reply To: 포스팅 안에 특정한 단어가 있을시 자동으로 링크가 생성되게 하는 플러그인이 없을까요?]]> https://kopress.kr/topic/%ed%8f%ac%ec%8a%a4%ed%8c%85-%ec%95%88%ec%97%90-%ed%8a%b9%ec%a0%95%ed%95%9c-%eb%8b%a8%ec%96%b4%ea%b0%80-%ec%9e%88%ec%9d%84%ec%8b%9c-%ec%9e%90%eb%8f%99%ec%9c%bc%eb%a1%9c-%eb%a7%81%ed%81%ac%ea%b0%80-%ec/#post-4389 Wed, 20 Apr 2011 05:01:15 +0000 helloworld1987 function replace_infinite_words($content) {

$wordlists = Array(‘막걸리’ => ‘http://mak.kr&#8217;,
‘맥주’ => ‘http://www.beer.org/&#8217;,
‘소주’ => ‘http://soju.com/&#8217;,
);

foreach($wordlists as $key=>$value) {
$content = str_replace($key,’‘.$key.’‘,$content);
}

return $content;
}

add_filter(‘the_content’,’replace_infinite_words’);

]]>