How do you List all Sidebars in a Metabox
You can also use a function like this: <?php /* Other stuff */ function sidebarOptions(){ $sidebars = $GLOBALS[‘wp_registered_sidebars’]; $sidebar_options = array(); foreach ( $sidebars as $sidebar ){ $sidebar_options[] = array( ‘name’ => $sidebar[‘name’], ‘value’ => $sidebar[‘id’] ); } return $sidebar_options; } /* Other stuff */ /* * Trying to print the result to check if … Read more