Changeset 56526 for trunk/src/wp-content/themes/twentyfifteen/functions.php
- Timestamp:
- 09/06/2023 09:21:17 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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',
Note: See TracChangeset
for help on using the changeset viewer.