. */ add_filter( 'get_archives_link', 'nofollow_archive' ); function nofollow_archive( $text ) { $text = stripslashes($text); $text = preg_replace_callback('||i', 'wp_rel_nofollow_callback', $text); return $text; }