Changeset 56526
- Timestamp:
- 09/06/2023 09:21:17 PM (2 years ago)
- Location:
- trunk/src/wp-content/themes
- Files:
-
- 17 edited
-
twentyeleven/inc/theme-options.php (modified) (1 diff)
-
twentyfifteen/functions.php (modified) (2 diffs)
-
twentyfifteen/inc/customizer.php (modified) (2 diffs)
-
twentyfourteen/functions.php (modified) (2 diffs)
-
twentyfourteen/inc/customizer.php (modified) (1 diff)
-
twentyfourteen/inc/featured-content.php (modified) (1 diff)
-
twentynineteen/functions.php (modified) (1 diff)
-
twentynineteen/inc/customizer.php (modified) (2 diffs)
-
twentyseventeen/functions.php (modified) (3 diffs)
-
twentyseventeen/inc/customizer.php (modified) (2 diffs)
-
twentysixteen/functions.php (modified) (2 diffs)
-
twentysixteen/inc/customizer.php (modified) (2 diffs)
-
twentythirteen/functions.php (modified) (2 diffs)
-
twentytwelve/functions.php (modified) (2 diffs)
-
twentytwenty/functions.php (modified) (4 diffs)
-
twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php (modified) (3 diffs)
-
twentytwentyone/functions.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/inc/theme-options.php
r55420 r56526 674 674 */ 675 675 function twentyeleven_customize_preview_js() { 676 wp_enqueue_script( 'twentyeleven-customizer', get_template_directory_uri() . '/inc/theme-customizer.js', array( 'customize-preview' ), '20150401', true);676 wp_enqueue_script( 'twentyeleven-customizer', get_template_directory_uri() . '/inc/theme-customizer.js', array( 'customize-preview' ), '20150401', array( 'in_footer' => true ) ); 677 677 } 678 678 add_action( 'customize_preview_init', 'twentyeleven_customize_preview_js' ); -
trunk/src/wp-content/themes/twentyfifteen/functions.php
r56315 r56526 445 445 446 446 // Skip-link fix is no longer enqueued by default. 447 wp_register_script( 'twentyfifteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20230526', true);447 wp_register_script( 'twentyfifteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20230526', array( 'in_footer' => true ) ); 448 448 449 449 if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { … … 455 455 } 456 456 457 wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20221101', true);457 wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20221101', array( 'in_footer' => true ) ); 458 458 wp_localize_script( 459 459 'twentyfifteen-script', -
trunk/src/wp-content/themes/twentyfifteen/inc/customizer.php
r55981 r56526 360 360 */ 361 361 function twentyfifteen_customize_control_js() { 362 wp_enqueue_script( 'color-scheme-control', get_template_directory_uri() . '/js/color-scheme-control.js', array( 'customize-controls', 'iris', 'underscore', 'wp-util' ), '20141216', true);362 wp_enqueue_script( 'color-scheme-control', get_template_directory_uri() . '/js/color-scheme-control.js', array( 'customize-controls', 'iris', 'underscore', 'wp-util' ), '20141216', array( 'in_footer' => true ) ); 363 363 wp_localize_script( 'color-scheme-control', 'colorScheme', twentyfifteen_get_color_schemes() ); 364 364 } … … 371 371 */ 372 372 function twentyfifteen_customize_preview_js() { 373 wp_enqueue_script( 'twentyfifteen-customize-preview', get_template_directory_uri() . '/js/customize-preview.js', array( 'customize-preview' ), '20141216', true);373 wp_enqueue_script( 'twentyfifteen-customize-preview', get_template_directory_uri() . '/js/customize-preview.js', array( 'customize-preview' ), '20141216', array( 'in_footer' => true ) ); 374 374 } 375 375 add_action( 'customize_preview_init', 'twentyfifteen_customize_preview_js' ); -
trunk/src/wp-content/themes/twentyfourteen/functions.php
r56315 r56526 368 368 369 369 if ( is_front_page() && 'slider' === get_theme_mod( 'featured_content_layout' ) ) { 370 wp_enqueue_script( 'twentyfourteen-slider', get_template_directory_uri() . '/js/slider.js', array( 'jquery' ), '20150120', true);370 wp_enqueue_script( 'twentyfourteen-slider', get_template_directory_uri() . '/js/slider.js', array( 'jquery' ), '20150120', array( 'in_footer' => true ) ); 371 371 wp_localize_script( 372 372 'twentyfourteen-slider', … … 379 379 } 380 380 381 wp_enqueue_script( 'twentyfourteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230526', true);381 wp_enqueue_script( 'twentyfourteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230526', array( 'in_footer' => true ) ); 382 382 } 383 383 add_action( 'wp_enqueue_scripts', 'twentyfourteen_scripts' ); -
trunk/src/wp-content/themes/twentyfourteen/inc/customizer.php
r48067 r56526 143 143 */ 144 144 function twentyfourteen_customize_preview_js() { 145 wp_enqueue_script( 'twentyfourteen_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20141015', true);145 wp_enqueue_script( 'twentyfourteen_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20141015', array( 'in_footer' => true ) ); 146 146 } 147 147 add_action( 'customize_preview_init', 'twentyfourteen_customize_preview_js' ); -
trunk/src/wp-content/themes/twentyfourteen/inc/featured-content.php
r55476 r56526 435 435 */ 436 436 public static function enqueue_scripts() { 437 wp_enqueue_script( 'featured-content-suggest', get_template_directory_uri() . '/js/featured-content-admin.js', array( 'jquery', 'suggest' ), '20211130', true);437 wp_enqueue_script( 'featured-content-suggest', get_template_directory_uri() . '/js/featured-content-admin.js', array( 'jquery', 'suggest' ), '20211130', array( 'in_footer' => true ) ); 438 438 } 439 439 -
trunk/src/wp-content/themes/twentynineteen/functions.php
r56315 r56526 260 260 261 261 if ( has_nav_menu( 'menu-1' ) ) { 262 wp_enqueue_script( 'twentynineteen-priority-menu', get_theme_file_uri( '/js/priority-menu.js' ), array(), '20200129', true);263 wp_enqueue_script( 'twentynineteen-touch-navigation', get_theme_file_uri( '/js/touch-keyboard-navigation.js' ), array(), '20230621', true);262 wp_enqueue_script( 'twentynineteen-priority-menu', get_theme_file_uri( '/js/priority-menu.js' ), array(), '20200129', array( 'in_footer' => true ) ); 263 wp_enqueue_script( 'twentynineteen-touch-navigation', get_theme_file_uri( '/js/touch-keyboard-navigation.js' ), array(), '20230621', array( 'in_footer' => true ) ); 264 264 } 265 265 -
trunk/src/wp-content/themes/twentynineteen/inc/customizer.php
r48102 r56526 126 126 */ 127 127 function twentynineteen_customize_preview_js() { 128 wp_enqueue_script( 'twentynineteen-customize-preview', get_theme_file_uri( '/js/customize-preview.js' ), array( 'customize-preview' ), '20181214', true);128 wp_enqueue_script( 'twentynineteen-customize-preview', get_theme_file_uri( '/js/customize-preview.js' ), array( 'customize-preview' ), '20181214', array( 'in_footer' => true ) ); 129 129 } 130 130 add_action( 'customize_preview_init', 'twentynineteen_customize_preview_js' ); … … 134 134 */ 135 135 function twentynineteen_panels_js() { 136 wp_enqueue_script( 'twentynineteen-customize-controls', get_theme_file_uri( '/js/customize-controls.js' ), array(), '20181214', true);136 wp_enqueue_script( 'twentynineteen-customize-controls', get_theme_file_uri( '/js/customize-controls.js' ), array(), '20181214', array( 'in_footer' => true ) ); 137 137 } 138 138 add_action( 'customize_controls_enqueue_scripts', 'twentynineteen_panels_js' ); -
trunk/src/wp-content/themes/twentyseventeen/functions.php
r56315 r56526 478 478 479 479 // Skip-link fix is no longer enqueued by default. 480 wp_register_script( 'twentyseventeen-skip-link-focus-fix', get_theme_file_uri( '/assets/js/skip-link-focus-fix.js' ), array(), '20161114', true);481 482 wp_enqueue_script( 'twentyseventeen-global', get_theme_file_uri( '/assets/js/global.js' ), array( 'jquery' ), '20211130', true);480 wp_register_script( 'twentyseventeen-skip-link-focus-fix', get_theme_file_uri( '/assets/js/skip-link-focus-fix.js' ), array(), '20161114', array( 'in_footer' => true ) ); 481 482 wp_enqueue_script( 'twentyseventeen-global', get_theme_file_uri( '/assets/js/global.js' ), array( 'jquery' ), '20211130', array( 'in_footer' => true ) ); 483 483 484 484 $twentyseventeen_l10n = array( … … 487 487 488 488 if ( has_nav_menu( 'top' ) ) {