add_section( 'theme_info' , array( 'title' => __( 'Information Links' , 'business-one-page' ), 'priority' => 6, )); $wp_customize->add_setting('theme_info_theme',array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', )); $theme_info = ''; $theme_info .= '

' . __( 'Need help?', 'business-one-page' ) . '

'; $theme_info .= '' . __( 'here', 'business-one-page' ) . '
'; $theme_info .= '' . __( 'here', 'business-one-page' ) . '
'; $theme_info .= '' . __( 'here', 'business-one-page' ) . '
'; $theme_info .= '' . __( 'here', 'business-one-page' ) . '
'; $theme_info .= '' . __( 'here', 'business-one-page' ) . '
'; $wp_customize->add_control( new Theme_Info_Custom_Control( $wp_customize ,'theme_info_theme',array( 'label' => __( 'About Business One Page' , 'business-one-page' ), 'section' => 'theme_info', 'description' => $theme_info ))); $wp_customize->add_setting('theme_info_more_theme',array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', )); $theme_info = 'UPGRADE TO BUSINESS ONE PAGE PRO'; $wp_customize->add_control( new Theme_Info_Custom_Control( $wp_customize ,'theme_info_more_theme',array( 'label' => __( 'Pro Version' , 'business-one-page' ), 'section' => 'theme_info', 'description' => $theme_info ))); $wp_customize->add_setting('theme_info_pro_theme',array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', )); } add_action( 'customize_register', 'business_one_page_customizer_theme_info' ); if( class_exists( 'WP_Customize_control' ) ){ class Theme_Info_Custom_Control extends WP_Customize_Control { /** * Render the content on the theme customizer page */ public function render_content() { ?> 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( 'Business_One_Page_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Business_One_Page_Customize_Section_Pro( $manager, 'business_one_page_view_pro', array( 'title' => esc_html__( 'Pro Available', 'business-one-page' ), 'priority' => 5, 'pro_text' => esc_html__( 'VIEW PRO THEME', 'business-one-page' ), 'pro_url' => 'https://raratheme.com/wordpress-themes/business-one-page-pro/' ) ) ); }