-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme-options.php
38 lines (31 loc) · 1.02 KB
/
theme-options.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
// =========================================
// SET UP THEME OPTIONS
// =========================================
namespace KLPTheme;
// Theme Option main headings
if ( function_exists( 'acf_add_options_page' ) ) {
acf_add_options_page( array(
'page_title' => 'Theme Options',
'menu_title' => 'Theme Options',
'menu_slug' => 'theme-global-settings',
'capability' => 'edit_posts',
'redirect' => true // Makes it so clicking "Theme Options" actually opens whatever the first sub-option is. Otherwise it's a little confusing what the user is looking at there.
) );
acf_add_options_sub_page( array(
'page_title' => 'Global Settings',
'menu_title' => 'Global',
'parent_slug' => 'theme-global-settings',
) );
acf_add_options_sub_page( array(
'page_title' => 'Header Settings',
'menu_title' => 'Header',
'parent_slug' => 'theme-global-settings',
) );
acf_add_options_sub_page( array(
'page_title' => 'Social Settings',
'menu_title' => 'Social',
'parent_slug' => 'theme-global-settings',
) );
}
?>