Is it possible to have the Parent menu to be redirected to the child menu?
As an example I want this parent item page to redirect to it's children page.
My code for displaying pages as the Main Menu:
<?php wp_list_pages('exclude=3&sort_column=menu_order&title_li=&depth=1'); ?>
here is my code for listing the children menu:
<div id="leftCol">
<?php if($post->post_parent)
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } else { ?>
<?php } ?>
</div>