Skip to content

Instantly share code, notes, and snippets.

@truongluu
Created May 13, 2021 00:16
Show Gist options
  • Select an option

  • Save truongluu/bd023990c0c465604148dc8fb16370fb to your computer and use it in GitHub Desktop.

Select an option

Save truongluu/bd023990c0c465604148dc8fb16370fb to your computer and use it in GitHub Desktop.
Acf options page
add_action('acf/init', 'my_acf_op_init');
function my_acf_op_init() {
// Check function exists.
if( function_exists('acf_add_options_page') ) {
// Register options page.
$option_page = acf_add_options_page(array(
'page_title' => __('Theme General Settings'),
'menu_title' => __('Theme Settings'),
'menu_slug' => 'theme-general-settings',
'capability' => 'edit_posts',
'redirect' => false
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment