Skip to content

Instantly share code, notes, and snippets.

@robinnorth
Forked from jaredatch/gist:11239971
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinnorth/3e525d98034514ac79b8 to your computer and use it in GitHub Desktop.
Save robinnorth/3e525d98034514ac79b8 to your computer and use it in GitHub Desktop.
<?php
/**
* Create ACF setting page under Events CPT menu
*
* @since 1.0.0
*/
if ( function_exists( 'acf_add_options_sub_page' ) ){
acf_add_options_sub_page(array(
'title' => 'Event Settings',
'parent' => 'edit.php?post_type=events',
'capability' => 'manage_options'
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment