How can I have different options pages for my custom post type sections in the admin?
Well I somewhat figured it out by using
acf_add_options_sub_page(array(
‘title’ => ‘Room Options’,
‘parent’ => ‘edit.php?post_type=custom-post-type-name’
));
But this overrides the link to my main options page.
What happens if you try “parent_slug” instead of “parent”?
@tuskotrush thanks for the very nice plugin!
Working great as I expected.
I have one question. I posted my question here.
It’s about fields order and strange redirection.
http://support.advancedcustomfields.com/forums/topic/option-pages-field-order-is-different-from-setting/
Will you help me out whenever you have time.
thank you.
hi, in my case the following worked for me, I put it with the Code Snippet plugin …
if( function_exists('acf_add_options_page') ) {
acf_add_options_sub_page(array(
'page_title' => 'Donde comprar',
'menu_title' => 'Donde comprar',
'parent' => 'edit.php?post_type=diaril_sa',
));
}