burstofcode
8/12/2017 - 12:51 PM

Add ACF Theme Settings page

Add ACF Theme Settings page

### Add this code [function.php]

/**
* Add ACF Theme Settings to the admin menu
*/
if( function_exists('acf_add_options_page') ) {
	acf_add_options_page(array(
		'page_title'  => 'Theme Settings',
		'menu_title'  => 'Theme Settings',
		'menu_slug'   => 'wd-theme-settings',
		'capability'  => 'edit_posts',
		'position' => '58',
		'icon_url' => 'dashicons-list-view',
		'redirect'  => false
	));
}