Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created June 27, 2016 13:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/a99f6dc373ab30c799b45cc5bd6815ed to your computer and use it in GitHub Desktop.
Save billerickson/a99f6dc373ab30c799b45cc5bd6815ed to your computer and use it in GitHub Desktop.
<?php
/**
* ACF Options Page
*
*/
function ea_acf_options_page() {
if ( function_exists( 'acf_add_options_page' ) ) {
acf_add_options_page( array(
'title' => 'Site Options',
'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