MayerAnnamaria
7/11/2017 - 9:17 AM

add new menu

add new menu

https://developer.wordpress.org/themes/basics/template-hierarchy/

https://codex.wordpress.org/Navigation_Menus

functions.php-be:
---------------------
function register_my_menu() {
  register_nav_menu('new-menu',__( 'New Menu' ));
}
add_action( 'init', 'register_my_menu' );

--------------------
ahol a menut akarom, h megjelenjen:
 <?php wp_nav_menu( array( 'theme_location' => 'new-menu', 'container_class' => 'new_menu_class' ) ); ?>