array( '#000000', '#ffffff', '#dd3333', '#dd9933', '#eeee22', '#81d742', '#1e73be', '#8224e3', ) ) ); } add_action( 'customize_controls_enqueue_scripts', 'business_power_custom_controls_script', 99 ); /** * ------------------------------------------------------ * Modify default customizer placement * ------------------------------------------------------ * * @since 1.0 * @package Business Power WordPress Theme */ function business_power_customize_register( $wp_customize ){ $color_section = 'business-power-color-section'; $wp_customize->get_control( 'header_textcolor' )->section = $color_section; $wp_customize->get_control( 'background_color' )->section = $color_section; # changing header image to Inner Banner options and adding inside theme option panel $wp_customize->get_section( 'header_image' )->title = esc_html__( 'Inner Banner', 'business-power' ); $wp_customize->get_section( 'header_image' )->panel = 'business-power-panel'; } add_action( 'customize_register', 'business_power_customize_register' ); /** * ------------------------------------------------------ * Adds supports related with customizer * ------------------------------------------------------ * * @since 1.0 * @package Business Power WordPress Theme */ function business_power_customizer_supports(){ # Customize Selective Refresh Widgets. add_theme_support( 'customize-selective-refresh-widgets' ); } add_action( 'after_setup_theme', 'business_power_customizer_supports' );