Changeset 60536 for trunk/src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php
- Timestamp:
- 08/03/2025 03:25:29 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php
r60478 r60536 17 17 18 18 /** 19 * Register customizer options.19 * Registers customizer options. 20 20 * 21 21 * @since Twenty Twenty 1.0 … … 27 27 /** 28 28 * Site Title & Description. 29 * */29 */ 30 30 $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; 31 31 $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; … … 440 440 441 441 /** 442 * Sanitize select.442 * Sanitizes a select input. 443 443 * 444 444 * @since Twenty Twenty 1.0 … … 455 455 456 456 /** 457 * Sanitize boolean for checkbox.457 * Sanitizes a boolean for checkbox. 458 458 * 459 459 * @since Twenty Twenty 1.0 … … 477 477 if ( ! function_exists( 'twentytwenty_customize_partial_blogname' ) ) { 478 478 /** 479 * Render the site title for the selective refresh partial.479 * Renders the site title for the selective refresh partial. 480 480 * 481 481 * @since Twenty Twenty 1.0 … … 488 488 if ( ! function_exists( 'twentytwenty_customize_partial_blogdescription' ) ) { 489 489 /** 490 * Render the site description for the selective refresh partial.490 * Renders the site description for the selective refresh partial. 491 491 * 492 492 * @since Twenty Twenty 1.0 … … 499 499 if ( ! function_exists( 'twentytwenty_customize_partial_site_logo' ) ) { 500 500 /** 501 * Render the site logo for the selective refresh partial.501 * Renders the site logo for the selective refresh partial. 502 502 * 503 503 * Doing it this way so we don't have issues with `render_callback`'s arguments.
Note: See TracChangeset
for help on using the changeset viewer.