Skip to content

Instantly share code, notes, and snippets.

@yxod
Created October 21, 2021 19:15
Show Gist options
  • Save yxod/6812c29e50568024e3eee47c3bb27a94 to your computer and use it in GitHub Desktop.
Save yxod/6812c29e50568024e3eee47c3bb27a94 to your computer and use it in GitHub Desktop.
Wordpress: Acf option page
if( function_exists('acf_add_options_page') ) {
acf_add_options_page(array(
'page_title' => 'Настройки темы',
'menu_title' => 'Настройки темы',
'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