add_section( 'theme_info', array( 'title' => __( 'Demo & Documentation' , 'blossom-fashion' ), 'priority' => 6, ) ); /** Important Links */ $wp_customize->add_setting( 'theme_info_theme', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $theme_info = '

'; $theme_info .= sprintf( __( 'Demo Link: %1$sClick here.%2$s', 'blossom-fashion' ), '', '' ); $theme_info .= '

'; $theme_info .= sprintf( __( 'Documentation Link: %1$sClick here.%2$s', 'blossom-fashion' ), '', '' ); $theme_info .= '

'; $wp_customize->add_control( new Blossom_Fashion_Note_Control( $wp_customize, 'theme_info_theme', array( 'section' => 'theme_info', 'description' => $theme_info ) ) ); } add_action( 'customize_register', 'blossom_fashion_customizer_theme_info' ); if( class_exists( 'WP_Customize_Section' ) ) : /** * Adding Go to Pro Section in Customizer * https://github.com/justintadlock/trt-customizer-pro */ class Blossom_Fashion_Customize_Section_Pro extends WP_Customize_Section { /** * The type of customize section being rendered. * * @since 1.0.0 * @access public * @var string */ public $type = 'pro-section'; /** * Custom button text to output. * * @since 1.0.0 * @access public * @var string */ public $pro_text = ''; /** * Custom pro button URL. * * @since 1.0.0 * @access public * @var string */ public $pro_url = ''; /** * Add custom parameters to pass to the JS via JSON. * * @since 1.0.0 * @access public * @return void */ public function json() { $json = parent::json(); $json['pro_text'] = $this->pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } /** * Outputs the Underscore.js template. * * @since 1.0.0 * @access public * @return void */ protected function render_template() { ?>
  • {{ data.title }} <# if ( data.pro_text && data.pro_url ) { #> {{ data.pro_text }} <# } #>

  • register_section_type( 'Blossom_Fashion_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Blossom_Fashion_Customize_Section_Pro( $manager, 'blossom_fashion_page_view_pro', array( 'title' => esc_html__( 'Pro Available', 'blossom-fashion' ), 'priority' => 5, 'pro_text' => esc_html__( 'VIEW PRO THEME', 'blossom-fashion' ), 'pro_url' => 'https://blossomthemes.com/downloads/blossom-fashion-pro/' ) ) ); }