Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 11, 2017 14:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/bfd80d8e3414884aea1cf719ed7edd1a to your computer and use it in GitHub Desktop.
Save billerickson/bfd80d8e3414884aea1cf719ed7edd1a to your computer and use it in GitHub Desktop.
<?php
/**
* ACF Options Page
*
*/
function ea_acf_options_page() {
if ( function_exists( 'acf_add_options_sub_page' ) ){
acf_add_options_sub_page( array(
'title' => 'CPT Settings',
'parent' => 'edit.php?post_type=CPT_slug',
'capability' => 'manage_options'
) );
}
}
add_action( 'init', 'ea_acf_options_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment