Menu góra/dół
Rejestracja dwóch menusów
// Register Navigation Menus function custom_navigation_menus() { $locations = array( 'Menu górne' => __( 'Menu w nagłówku strony', 'text_domain' ), 'Menu dolne' => __( 'Menu w stopce strony', 'text_domain' ), ); register_nav_menus( $locations ); } add_action( 'init', 'custom_navigation_menus' );