Skip to content

Instantly share code, notes, and snippets.

@RadGH
RadGH / acf-custom-metabox-on-options-page.php
Last active October 5, 2023 06:39
ACF: Display custom metabox on an ACF (sub-) options page
<?php
/**
* Add sub options page with a custom post id
*/
if( function_exists('acf_add_options_page') ) {
acf_add_options_sub_page(array(
'page_title' => 'CSV Sync',
'menu_title' => 'CSV Sync',
'parent_slug' => 'users.php',