add_filter( 'nav_menu_link_attributes', 'wpse121123_contact_menu_atts', 10, 3 );
function wpse121123_contact_menu_atts( $atts, $item, $args ) {
// ID айтема в меню
$menu_target = 123;
if ( $item->ID == $menu_target ) {
$atts['rel'] = 'nofollow';
}
return $atts;
}