• Is there anyway to ADD a new page without showing them on the top navigation menu ?

    These pages are sub pages of about.

    About is the parent of these pages.

    About

    I try it on my localhost, whenever I add new pages the page title appear on the top navigation menu. Is there anyway to stop them to appear on the top navigation menu ?

Viewing 1 replies (of 1 total)
  • Hi @davy_yg if you’re using an off the shelf WordPress theme the chances are it’s coded to display the navigation in its raw form, meaning that any published pages will be displayed in the navigation.

    There are two work options the first involves a plugin which gives you the option to tick a box to exclude items from appearing within the navigation.

    The second and better option is to use the built in ‘menus’ tool WordPress offers which allows you to drag and drop navigation pages into the order you’d like, with the option of leaving out certain pages, or having them replicated under another section.

    So to call a custom menu, simply replace the nav tag within your header.php file with the following.

    <?php wp_nav_menu( array('menu' => 'The name of your navigation' )); ?>

    Hope this helps
    ^JD

Viewing 1 replies (of 1 total)
  • The topic ‘Custom Page Navigation’ is closed to new replies.