Skip to content

Instantly share code, notes, and snippets.

@lstanard
Forked from jaredatch/gist:11239971
Created October 14, 2017 20:05
Show Gist options
  • Save lstanard/443fd85175e4347ff10f8ae8bd60d5f7 to your computer and use it in GitHub Desktop.
Save lstanard/443fd85175e4347ff10f8ae8bd60d5f7 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