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