bstunt,
Show us the code currently used to display the navigation.
Thread Starter
bstunt
(@bstunt)
would that be in the header?
if it is, then its:
<!– Top Menu Start –>
<div id=”topmenu”>
<li class=”<?php if (is_home()) { echo “current_page_item”; } ?>”>” title=”Home”>Home
<?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?>
</div>
<!– Top Menu End –>
Thanks doc4
Thread Starter
bstunt
(@bstunt)
<!-- Top Menu Start -->
<div id="topmenu">
<ul>
<li class="<?php if (is_home()) { echo "current_page_item"; } ?>"><a href="<?php echo get_settings('home'); ?>" title="Home">Home</a></li>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
</div>
<!-- Top Menu End -->
opps… sorry bout the last one…
bstunt,
Try this:
<?php wp_list_pages('sort_column=menu_order&title_li=&depth=1'); ?>
More on the depth argument here: http://codex.wordpress.org/Function_Reference/wp_list_pages
Thread Starter
bstunt
(@bstunt)
thanks doc4! that solved it!