Skip to content

Instantly share code, notes, and snippets.

@sophiawzey
Created December 14, 2018 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sophiawzey/fcd28a669ce9f3b09b79a8ce2f737730 to your computer and use it in GitHub Desktop.
Save sophiawzey/fcd28a669ce9f3b09b79a8ce2f737730 to your computer and use it in GitHub Desktop.
[ACF Theme Options] #wordpress #acf
<?php
//ACF Admin Options
if( function_exists('acf_add_options_page') ) {
acf_add_options_page([
'page_title' => 'Theme Settings',
'menu_title' => 'Theme Settings',
'menu_slug' => 'theme-settings',
'capability' => 'edit_posts',
'redirect' => FALSE
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment