wordpress 블로그 글에 nofollow 속성 추가

601 단어
주제의functions에서만php 파일에 다음 코드를 추가하면 됩니다. 코드는 외부 체인에 external nofollow만 추가하고 사이트 내 링크 속성을 바꾸지 않습니다.
//             nofollow  
add_filter('the_content','web589_the_content_nofollow',999);
function web589_the_content_nofollow($content){
 preg_match_all('/href="(.*?)"/',$content,$matches);
 if($matches){
  foreach($matches[1] as $val){
   if( strpos($val,home_url())===false ) $content=str_replace("href=\"$val\"", 

"href=\"$val\" rel=\"external nofollow\" ",$content);
  }
 }
 return $content;
}

좋은 웹페이지 즐겨찾기