Hi I would like to add a custom to link to the admin area within the “Options Page” menu of ACF in the left sidebar of WP admin area.
This is posible with this funciotn acf_add_options_sub_page() or in other way?
Hi Ben, I mean by custom link, some button to link whatever. Using for example this wp function: admin_url(‘post.php?post=63&action=edit’) to build that link. I want to integrate some menu items (eg. custom post type edit) in the ACF options menu.
Sorry If I was not enough clear in my question.
Hi @Dedalos-01
You can use the WP function add_submenu_page
. The parent slug should be ‘acf-options’
Thanks
E
Yes, thank you Elliot, that was the solution.