関数 wp_rel_nofollow()
2014/12/11
関数 wp_rel_nofollow()
定義ファイル :/blog/wp-includes/formatting.php 8
1 2 3 4 5 6 7 | 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; } |