Created
May 13, 2021 00:16
-
-
Save truongluu/bd023990c0c465604148dc8fb16370fb to your computer and use it in GitHub Desktop.
Acf options page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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