Changeset 56526 for trunk/src/wp-content/themes/twentysixteen/functions.php
- Timestamp:
- 09/06/2023 09:21:17 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentysixteen/functions.php
r56315 r56526 414 414 415 415 // Skip-link fix is no longer enqueued by default. 416 wp_register_script( 'twentysixteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20230526', true);416 wp_register_script( 'twentysixteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20230526', array( 'in_footer' => true ) ); 417 417 418 418 if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { … … 424 424 } 425 425 426 wp_enqueue_script( 'twentysixteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230629', true);426 wp_enqueue_script( 'twentysixteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230629', array( 'in_footer' => true ) ); 427 427 428 428 wp_localize_script(
Note: See TracChangeset
for help on using the changeset viewer.