Skip to content

Instantly share code, notes, and snippets.

@mdrubba
Created January 27, 2014 16:50
Show Gist options
  • Save mdrubba/8652334 to your computer and use it in GitHub Desktop.
Save mdrubba/8652334 to your computer and use it in GitHub Desktop.
Add or Rename Optionspage for ACF Plugins and Change Capability
function md_acf_set_options_page( $settings )
{
$settings['title'] = 'flowlife';
$settings['capability'] = 'manage_options';
$settings['pages'] = array('flowlife');
return $settings;
}
add_filter('acf/options_page/settings', 'md_acf_set_options_page');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment