Get all registered wp theme customizer sections?

Have you tried sections method? You can use $wp_customize->sections().

Example:

foreach ($wp_customize->sections() as $section_key => $section_object ) {
  echo $section_key . '<br />';
}

Leave a Comment