Skip to content

Instantly share code, notes, and snippets.

@HelloAlberuni
Created July 29, 2019 08:57
Show Gist options
  • Select an option

  • Save HelloAlberuni/982bb70c9d3cf79ededb364f9b6ef786 to your computer and use it in GitHub Desktop.

Select an option

Save HelloAlberuni/982bb70c9d3cf79ededb364f9b6ef786 to your computer and use it in GitHub Desktop.
get registered sidebar list
function flone_get_sidebars(){
$sidebars = array();
foreach ( $GLOBALS['wp_registered_sidebars'] as $sidebar ){
$sidebars[$sidebar['id']] = ucwords( $sidebar['name'] );
}
return $sidebars;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment