Support

Account

Home Forums ACF PRO Options pages not visible in side menu Reply To: Options pages not visible in side menu

  • Just to provide a little more detail.

    if(function_exists('acf_add_options_page')) { 
     
    	acf_add_options_page(array(
            'page_title'    => 'My Settings Page',
            'menu_title'    => 'My Settings',
            'menu_slug'     => 'my_settings',
            'capability'    => 'edit_posts',
            'redirect'      => false, 
        ));	
    	
    	acf_add_options_sub_page(array(
    		'title' => 'Header',
    		'slug' => 'header',
    		'parent' => 'my_settings',
    	));
    		 
    }

    Also to note, if you have 2 acf_add_options_page() with acf_add_options_sub_page() of the same ‘title’ you will need to use a different slug.

    acf_add_options_sub_page(array(
    	'title' => 'Header',
    	'slug' => 'header',
    	'parent' => 'my_settings',
    ));
    
    acf_add_options_sub_page(array(
    	'title' => 'Header',
    	'slug' => 'other_header',
    	'parent' => 'my_other_settings',
    ));