Skip to content

Instantly share code, notes, and snippets.

@nickstewart95
Created December 10, 2021 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickstewart95/7c312d023a252b8398e706ba41ab9af5 to your computer and use it in GitHub Desktop.
Save nickstewart95/7c312d023a252b8398e706ba41ab9af5 to your computer and use it in GitHub Desktop.
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