create a select input with menus created on a custom options page

Hi see wp_get_nav_menus()

You can set $args parametr. The same as $args to get_terms() function.

function will return

Array
(
    [0] => stdClass Object
        (
            [term_id] => 3
            [name] => Menu 1
            [slug] => menu-1
            [term_group] => 0
            [term_taxonomy_id] => 3
            [taxonomy] => nav_menu
            create a select input with menus created on a custom options page => 
            [parent] => 0
            [count] => 1
        )

    [1] => stdClass Object
        (
            [term_id] => 4
            [name] => Menu 2
            [slug] => menu-2
            [term_group] => 0
            [term_taxonomy_id] => 4
            [taxonomy] => nav_menu
            create a select input with menus created on a custom options page => 
            [parent] => 0
            [count] => 2
        )
)