Answers for "how make custom menu in wordpress"

PHP
1

how make custom menu in wordpress

function wpb_custom_new_menu() {
  register_nav_menus(
    array(
      'my-custom-menu' => __( 'My Custom Menu' ),
      'extra-menu' => __( 'Extra Menu' )
    )
  );
}
add_action( 'init', 'wpb_custom_new_menu' );
Posted by: Guest on October-29-2020
0

how make custom menu in wordpress

<?php
wp_nav_menu( array( 
    'theme_location' => 'my-custom-menu', 
    'container_class' => 'custom-menu-class' ) ); 
?>
Posted by: Guest on October-29-2020

Code answers related to "how make custom menu in wordpress"

Browse Popular Code Answers by Language