Menu Customisation – Urgent
-
Greetings WordPress Community,
I’m looking to alter the way in which my Menu operates. You can view what I am trying to achieve at: https://cleaning.greenchoicegroup.com
I’m trying to have my menu system display Home Page only on any Sub Pages that I’ve created. In the link above, you can see that there is no “Home Page” on the front, yet I wish there to be on any of the sub-pages I create within that site.
The purpose of this is to have a Home Page link on any sub-pages allowing them to return to the Home Page, without it displaying on the Home Page, causing confusion.
Here is the code that handles my menu system.
<div id="menu" class="alignleft"> <?php if( function_exists('wp_nav_menu') && has_nav_menu('primary')) { wp_nav_menu( array('menu_id'=> '','container'=>'')); } else { echo '<ul>'; wp_list_pages('title_li='); echo '</ul>'; } ?> </div>
- The topic ‘Menu Customisation – Urgent’ is closed to new replies.