Skip to content

Instantly share code, notes, and snippets.

@daronspence
Created April 15, 2015 03:18
Show Gist options
  • Save daronspence/a1e7036673911e426bcd to your computer and use it in GitHub Desktop.
Save daronspence/a1e7036673911e426bcd to your computer and use it in GitHub Desktop.
Remove an options page from the ACF Locations dropdown.
<?php
/**
* Remove ACFE Options Page from ACF Feild Groups Location
*
* @since 1.0
*/
add_filter('acf/location/rule_values/options_page', function( $choices ) {
unset( $choices['acfe-licenses'] ); // options sub page menu-slug
if ( empty( $choices ) )
$choices[''] = __('No options pages exist', 'acf');
return $choices;
}, 999, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment