Sort Sections. * * @package business-class/customizer/fields */ /** * Exit if accessed directly. */ if ( ! defined( 'ABSPATH' ) ) { exit; } $panel_name = 'Theme Options'; $section_name = 'Sort Sections'; Business_Class_Customizer::add_field( BUSINESS_CLASS_CUSTOMIZER_THEME_CONFIG_ID, array( 'type' => 'sortable', 'settings' => business_class_customizer_fields_settings_id( $panel_name, $section_name, 'Sort Sections' ), 'label' => __( 'Sort Sections', 'business-class' ), 'section' => business_class_get_customizer_section_id( $panel_name, $section_name ), 'default' => business_class_customizer_defaults( $panel_name, $section_name, 'Sort Sections' ), 'description' => esc_html__( 'Sort your frontpage static sections.', 'business-class' ), 'priority' => 10, 'choices' => business_class_get_sections_list(), ) );