Lines:
1 to 25 of 25
<?php /** * Twenty Nineteen: Customizer * * @package WordPress * @subpackage Twenty_Nineteen * @since Twenty Nineteen 1.0 */ /* function twentynineteen_customize_register() – Add postMessage support for site title and description for the Theme Customizer. */ add_action( 'customize_register', 'twentynineteen_customize_register' ); /* function twentynineteen_customize_partial_blogname() – Render the site title for the selective refresh partial. */ /* function twentynineteen_customize_partial_blogdescription() – Render the site tagline for the selective refresh partial. */ /* function twentynineteen_customize_preview_js() – Bind JS handlers to instantly live-preview changes. */ add_action( 'customize_preview_init', 'twentynineteen_customize_preview_js' ); /* function twentynineteen_panels_js() – Load dynamic logic for the customizer controls area. */ add_action( 'customize_controls_enqueue_scripts', 'twentynineteen_panels_js' ); /* function twentynineteen_sanitize_color_option() – Sanitize custom color choice. */