関数 popuplinks()
2014/12/10
関数 popuplinks()
定義ファイル :/blog/wp-includes/formatting.php 9
1 2 3 4 | function popuplinks($text) { $text = preg_replace('/<a (.+?)>/i', "<a $1 target='_blank' rel='external'>", $text); return $text; } |
WEBシステム SI屋の代表のブログです。
2014/12/10
1 2 3 4 | function popuplinks($text) { $text = preg_replace('/<a (.+?)>/i', "<a $1 target='_blank' rel='external'>", $text); return $text; } |