File: /disk001/machen/www/support/wp-content/themes/wp-moose/inc/customizer/sections/preloader.php
<?php
if ( ! function_exists( 'wp_moose_register_preloader_options' ) ) {
/**
* Add preloader options and controls.
*
* @param \WP_Customize_Manager $wp_customize
* @param string $section_id
* @param int $priority
*/
function wp_moose_register_preloader_options( $wp_customize, $section_id, $priority = 100 ) {
$wp_customize->add_section( $section_id, array(
'title' => esc_html__( 'Preloader Settings', 'wp-moose' ),
'panel' => '',
'priority' => $priority,
) );
wp_moose_register_options( $wp_customize, array(
'name' => 'wp_moose_disable_preloader',
'label' => esc_html__( 'Disable Preloader', 'wp-moose' ),
'section' => $section_id,
'custom_control' => Moose_Switch_Customize_Control::class,
) );
}
}