damn girl
// Register Navigation Menus function menuuu() { $locations = array( 'header_menu' => __( 'Custom Header Menu', 'text_domain' ), 'footer_menu' => __( 'Custom Footer Menu', 'text_domain' ), 'mobile_footer' => __( 'Footer Menu on mobile devices', 'text_domain' ), ); register_nav_menus( $locations ); } // Hook into the 'init' action add_action( 'init', 'menuuu' );