• [email protected]

    (@claralynnheartcoachcouk)


    Hi — I am new to wordPress and working with the Delicate theme. The menu has completely disappeared.

    It is not displaying at all, so for now I effectively only have a 1-page website, since nobody can navigate to any other pages.

    Where did the menu go, and how do I get it back?

    Thank you!

Viewing 1 replies (of 1 total)
  • rakesh

    (@rakeshkattamudi)

    Hi,open your theme functions.php and find <?php register_nav_menu(); ?>.
    If that exists then use this code to see navigation in your theme <?php wp_nav_menu( array( 'theme_location' => 'your theme location' ) ); ?>

    Example:
    <?php register_nav_menu( 'any name', __( 'Navigation Menu', 'twentythirteen' ) ); ?>

    <?php wp_nav_menu( array( 'theme_location' => 'any name' ) ); ?>

    For delicate theme use this code to show menu <?php delicate_show_navigation ('primary', 'delicate_show_pagemenu'); ?>

Viewing 1 replies (of 1 total)
  • The topic ‘where did the menu go?’ is closed to new replies.