Last active
September 27, 2016 08:24
-
-
Save trys/75991b0254db65ffcff03ef1f96b2078 to your computer and use it in GitHub Desktop.
Options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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