Skip to content

Instantly share code, notes, and snippets.

@radist2s
Forked from jaredatch/gist:11239971
Last active July 9, 2023 10:07
Show Gist options
  • Save radist2s/84fd4df9fcd54e14e28c to your computer and use it in GitHub Desktop.
Save radist2s/84fd4df9fcd54e14e28c to your computer and use it in GitHub Desktop.
Create ACF options page under custom post type menu
<?php
/**
* Create ACF options page under custom post type 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' // or edit_posts
));
}
@Tusko
Copy link

Tusko commented Jul 8, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment