i want to nofollow contact us, about us, privacy policy and disclaimer pages that are in the navigation bar.
as this is the code in the function_list_pages_flat()
// Add post ID to nofollow separated by comma
$nofollow_posts = array(1, 2);
if ( in_array( $page->ID, $nofollow_posts ) )
$nofollow = ' rel="nofollow"';
else
$nofollow = '';
$output .= $indent . '<li class="' . $css_class . '"><a '. $nofollow . 'href="' . get_page_link($page->ID) . '" title="' . attribute_escape(apply_filters('the_title', $page->post_title)) . '"><span>' . apply_filters('the_title', $page->post_title) . '</span></a></li>';
where to exactly add the contact us, about us, privacy policy and disclaimer page urls and the page IDs for these four pages.
My PHP/CSS knowledge is quite limited.