Menu-bug
fffea
if ( ! function_exists( 'new_menu' ) ) { // Register Navigation Menus function new_menu() { $locations = array( 'super_menu' => __( 'This is the super menu', 'text_domain' ), 'footer-menu-big' => __( 'Menu big', 'text_domain' ), ); register_nav_menus( $locations ); } add_action( 'init', 'new_menu' ); }