関数 wp_rel_nofollow()
関数 wp_rel_nofollow()
| function wp_rel_nofollow( $text ) { // This is a pre save filter, so text is already escaped. $text = stripslashes($text); $text = preg_replace_callback('|<a (.+?)>|i', 'wp_rel_nofollow_callback', $text); $text = wp_slash($text); return $text; } |
- 関数