Answers for "how to add navigation menu to all pages in wordpress"

1

display nav menu in frontend using Wordpress

<?php    wp_nav_menu( array(        'theme_location'  => 'header',    ) );?>
Posted by: Guest on June-29-2021
0

add top menu bar in wordpress

function register_my_menu() {
register_nav_menu('additional-menu',__( 'Additional Menu' ));
}
add_action( 'init', 'register_my_menu' );
Posted by: Guest on October-29-2020

Code answers related to "how to add navigation menu to all pages in wordpress"

Browse Popular Code Answers by Language