add_section( 'theme_info', array( 'title' => __( 'Information Links' , 'travel-agency' ), 'priority' => 6, ) ); /** Important Links */ $wp_customize->add_setting( 'theme_info_theme', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $theme_info = '
'; $theme_info .= '

' . __( 'Need help?', 'travel-agency' ) . '

'; $theme_info .= '' . __( 'here', 'travel-agency' ) . ''; $theme_info .= '' . __( 'here', 'travel-agency' ) . ''; $theme_info .= '' . __( 'here', 'travel-agency' ) . ''; $theme_info .= '' . __( 'here', 'travel-agency' ) . ''; $theme_info .= '' . __( 'here', 'travel-agency' ) . ''; $theme_info .= '
'; $wp_customize->add_control( new Travel_Agency_Info_Text( $wp_customize, 'theme_info_theme', array( 'label' => __( 'About Travel Agency' , 'travel-agency' ), 'section' => 'theme_info', 'description' => $theme_info ) ) ); /** Changing priority for static front page */ $wp_customize->get_section( 'static_front_page' )->priority = 99; $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; } add_action( 'customize_register', 'travel_agency_customizer_theme_info' ); if ( class_exists( 'WP_Customize_control' ) ) { class Travel_Agency_Info_Text extends Wp_Customize_Control { public function render_content(){ ?> label ); ?> description ){ ?> description); ?> 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( 'Travel_Agency_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Travel_Agency_Customize_Section_Pro( $manager, 'travel_agency_page_view_pro', array( 'title' => esc_html__( 'Pro Available', 'travel-agency' ), 'priority' => 5, 'pro_text' => esc_html__( 'VIEW PRO THEME', 'travel-agency' ), 'pro_url' => 'https://rarathemes.com/wordpress-themes/travel-agency-pro/' ) ) ); }