Skip to content

Instantly share code, notes, and snippets.

@trys
Last active September 27, 2016 08:24
Show Gist options
  • Save trys/75991b0254db65ffcff03ef1f96b2078 to your computer and use it in GitHub Desktop.
Save trys/75991b0254db65ffcff03ef1f96b2078 to your computer and use it in GitHub Desktop.
Options
<?php
/**
* ACF options page
*/
function namespace_acf_settings() {
function_exists( 'acf_add_options_page' ) && acf_add_options_page(
array(
'menu_slug' => 'site-options',
'page_title' => 'Site Options',
'parent_slug' => 'options-general.php',
'capability' => 'manage_options',
'autoload' => true
)
);
}
add_filter( 'acf/include_fields', 'namespace_acf_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment