Skip to content

Instantly share code, notes, and snippets.

@moxdev
Last active February 13, 2019 21:51
Show Gist options
  • Save moxdev/330cb939ba42ad872df41850c64ccae9 to your computer and use it in GitHub Desktop.
Save moxdev/330cb939ba42ad872df41850c64ccae9 to your computer and use it in GitHub Desktop.
ACF Options Page Settings #wp #acf
<?php
/**
* Global Site Information
*/
if ( function_exists( 'acf_add_options_page' ) ) {
acf_add_options_page(
array(
'page_title' => 'Global Website Information',
'menu_title' => 'Site Global Info',
'menu_slug' => 'global-information',
'post_id' => 'global-information',
'capability' => 'edit_posts',
)
);
acf_add_options_sub_page(
array(
'page_title' => 'Contact Information',
'menu_title' => 'Contact Info',
'menu_slug' => 'contact-information',
'post_id' => 'contact-information',
'parent_slug' => 'global-information',
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment