how come i have "exclude=171" in my list pages code below, but its not excluding page 171 from my page list in the leftside navigation on the website
http://poolplayersforhire.com/
PHP Code:
<div id="leftside">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Main Sidebar') ) : else : ?>
<ul class="page">
<?php if (is_page()) { $highlight = "page_item"; } else {$highlight = "page_item current_page_item"; } ?>
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li=&exclude=171'); ?>
</ul>
<?php endif; ?>
</div>
please advise. thanks.