get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; // View PRO Version $wp_customize->add_section( 'carbon-portfolio_style_view_pro', array( 'title' => '' . esc_html__( 'View PRO Version', 'carbon-portfolio' ), 'priority' => 2, 'description' => sprintf( __( '

Go PRO Today!

Take it to the next level. See the features below:

%s
', 'carbon-portfolio' ), sprintf( '%2$s', esc_url( carbon_portfolio_get_pro_link() ), esc_html__( 'View carbon-portfolio PRO', 'carbon-portfolio' ) ) ), ) ); $wp_customize->add_setting( 'carbon-portfolio_pro_desc', array( 'default' => '', 'sanitize_callback' => 'carbon-portfolio_sanitize_checkbox', ) ); $wp_customize->add_control( 'carbon-portfolio_pro_desc', array( 'section' => 'carbon-portfolio_style_view_pro', 'type' => 'hidden', ) ); } add_action( 'customize_register', 'carbon_portfolio_customize_register' ); /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function carbon_portfolio_customize_preview_js() { wp_enqueue_script( 'carbon_portfolio_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true ); } add_action( 'customize_preview_init', 'carbon_portfolio_customize_preview_js' ); /** * Admin CSS */ function carbon_portfolio_customizer_assets() { wp_enqueue_style( 'carbon-portfolio_customizer_style', get_template_directory_uri() . '/css/admin.css', null, '1.0.1', false ); } add_action( 'customize_controls_enqueue_scripts', 'carbon_portfolio_customizer_assets' ); /** * Generate a link to the Noah Lite info page. */ function carbon_portfolio_get_pro_link() { return 'https://rocketr.net/buy/2b1a9cdc0ee7'; }