*/ function boldwp_getting_started($wp_customize) { $wp_customize->add_section( 'boldwp_section_getting_started', array( 'title' => esc_html__( 'Getting Started', 'boldwp' ), 'description' => esc_html__( 'Thanks for your interest in BoldWP! If you have any questions or run into any trouble, please visit us the following links. We will get you fixed up!', 'boldwp' ), 'panel' => 'boldwp_main_options_panel', 'priority' => 5, ) ); $wp_customize->add_setting( 'boldwp_options[documentation]', array( 'default' => '', 'sanitize_callback' => '__return_false', ) ); $wp_customize->add_control( new BoldWP_Customize_Button_Control( $wp_customize, 'boldwp_documentation_control', array( 'label' => esc_html__( 'Documentation', 'boldwp' ), 'section' => 'boldwp_section_getting_started', 'settings' => 'boldwp_options[documentation]', 'type' => 'button', 'button_tag' => 'a', 'button_class' => 'button button-primary', 'button_href' => esc_url( 'https://themesdna.com/boldwp-wordpress-theme/' ), 'button_target' => '_blank', ) ) ); $wp_customize->add_setting( 'boldwp_options[contact]', array( 'default' => '', 'sanitize_callback' => '__return_false', ) ); $wp_customize->add_control( new BoldWP_Customize_Button_Control( $wp_customize, 'boldwp_contact_control', array( 'label' => esc_html__( 'Contact Us', 'boldwp' ), 'section' => 'boldwp_section_getting_started', 'settings' => 'boldwp_options[contact]', 'type' => 'button', 'button_tag' => 'a', 'button_class' => 'button button-primary', 'button_href' => esc_url( 'https://themesdna.com/contact/' ), 'button_target' => '_blank', ) ) ); }