Skip to content

Instantly share code, notes, and snippets.

@nickstewart95
Created December 10, 2021 14:58
Embed
What would you like to do?
add_filter('acf/load_field/name=menu_choice', function ($field) {
$menus = get_registered_nav_menus();
foreach ($menus as $key => $value) {
$field['choices'][$key] = $value;
}
return $field;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment