register_nav_menu is not working in WordPress -
i've created own menu page it's not showing in wordpress website. don't know how register_nav_menu in header.php
i tried many things
<?php register_nav_menu( 'navigation', __( 'top' ) ); ?> added code in header.php still same problem.
use below code in header.php fetch menu
<?php $header_menu_defaults = array( 'theme_location' => '', 'menu' => 'top', 'container' => '', 'container_class' => '', 'container_id' => '', 'menu_class' => 'nav', 'menu_id' => '', 'echo' => true, 'fallback_cb' => 'wp_page_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', 'depth' => 0, 'walker' => '' ); wp_nav_menu( $header_menu_defaults ); ?>
Comments
Post a Comment