Answers for "wordpress adding a page to your nav bar menu"

PHP
1

display nav menu in frontend using Wordpress

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

How to Add Custom Navigation Menus in WordPress Themes

function wpb_custom_new_menu() {
  register_nav_menu('my-custom-menu',__( 'My Custom Menu' ));
}
add_action( 'init', 'wpb_custom_new_menu' );
Posted by: Guest on October-08-2021

Browse Popular Code Answers by Language