ホーム > 関数 > 関数 wp_rel_nofollow_callback() 2014/12/08 2014/12/11 目次1 関数 wp_rel_nofollow_callback()2 定義ファイル :/blog/wp-includes/formatting.php 5関数 wp_rel_nofollow_callback()定義ファイル :/blog/wp-includes/formatting.php 5PHP function wp_rel_nofollow_callback( $matches ) { $text = $matches[1]; $text = str_replace(array(' rel="nofollow"', " rel='nofollow'"), '', $text); return "<a $text rel=\"nofollow\">"; }12345function wp_rel_nofollow_callback( $matches ) { $text = $matches[1]; $text = str_replace(array(' rel="nofollow"', " rel='nofollow'"), '', $text); return "<a $text rel=\"nofollow\">";} - 関数