$location, 'description' => sprintf( __( 'Put the menu in the %s location', 'wp-graphql' ), $location ), ]; } } if ( empty( $values ) ) { $values['EMPTY'] = [ 'value' => 'Empty menu location', 'description' => __( 'Empty menu location', 'wp-graphql' ), ]; } register_graphql_enum_type( 'MenuLocationEnum', [ 'description' => __( 'Registered menu locations', 'wp-graphql' ), 'values' => $values, ] ); } }