args = [ // Grouping Settings 'business_aarambha_footer_copyright_group_settings' => [ 'type' => 'group', 'section' => 'footer_copyright', 'priority' => 10, 'choices' => [ 'normal' => array( 'tab-title' => esc_html__( 'General', 'business-aarambha' ), 'controls' => array( 'business_aarambha_footer_copyright_text', 'business_aarambha_footer_copyright_link_target' ) ), 'hover' => array( 'tab-title' => esc_html__( 'Style', 'business-aarambha' ), 'controls' => array( 'business_aarambha_footer_copyright_text_typo', 'business_aarambha_footer_copyright_padding', 'business_aarambha_footer_copyright_margin' ) ) ] ], // Textarea 'business_aarambha_footer_copyright_text' => [ 'type' => 'editor', 'default' => __( 'Copyright {copyright} {current_year} {site_title}', 'business-aarambha' ), 'sanitize_callback' => 'wp_kses_post', 'label' => esc_html__( 'Copyright Text', 'business-aarambha' ), 'description' => esc_html__( 'You can insert some arbitrary HTML code tags: {current_year} and {site_title}', 'business-aarambha' ), 'section' => 'footer_copyright', 'priority' => 15, ], // Link Open 'business_aarambha_footer_copyright_link_target' => [ 'type' => 'toggle', 'default' => ['desktop'=>'true'], 'section' => 'footer_copyright', 'priority' => 20, 'sanitize_callback' => ['Business_Aarambha_Customizer_Sanitize_Callback', 'sanitize_toggle' ], 'label' => esc_html__( 'Link Open', 'business-aarambha' ), 'description' => esc_html__( 'Toggle to enable link open in new window tab.', 'business-aarambha' ), ], // Text Typo 'business_aarambha_footer_copyright_text_typo' => [ 'type' => 'typography', 'default' => [ 'colors' => [ 'color_1' => 'var(--color-1)', 'color_2' => 'var(--color-2)' ] ], 'sanitize_callback' => ['Business_Aarambha_Customizer_Sanitize_Callback', 'sanitize_typography' ], 'label' => esc_html__( 'Text', 'business-aarambha' ), 'section' => 'footer_copyright', 'priority' => 45, 'colors' => [ 'color_1' => esc_html__( 'Normal', 'business-aarambha' ), 'color_2' => esc_html__( 'Link Hover', 'business-aarambha' ) ], 'inherits' => [ 'color_1' => 'var(--color-1)', 'color_2' => 'var(--color-2)' ], 'fields' => ['colors'=>true], ], // Padding 'business_aarambha_footer_copyright_padding' => [ 'type' => 'dimensions', 'default' => [ 'desktop' => [ 'side_1' => '10px', 'side_3' => '10px', 'linked' => 'off' ] ], 'sanitize_callback' => ['Business_Aarambha_Customizer_Sanitize_Callback', 'sanitize_dimensions' ], 'label' => esc_html__( 'Padding', 'business-aarambha' ), 'section' => 'footer_copyright', 'priority' => 55, 'responsive' => [ 'desktop', 'tablet', 'mobile' ], ], // Margin 'business_aarambha_footer_copyright_margin' => [ 'type' => 'dimensions', 'default' => '', 'sanitize_callback' => ['Business_Aarambha_Customizer_Sanitize_Callback', 'sanitize_dimensions' ], 'label' => esc_html__( 'Margin', 'business-aarambha' ), 'section' => 'footer_copyright', 'priority' => 60, 'responsive' => [ 'desktop', 'tablet', 'mobile' ], ] ]; } } new Business_Aarambha_Customize_Footer_Copyright_Fields();