Changeset 56526 for trunk/src/wp-content/themes/twentytwelve/functions.php
- Timestamp:
- 09/06/2023 09:21:17 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/functions.php
r56315 r56526 189 189 190 190 // Adds JavaScript for handling the navigation menu hide-and-show behavior. 191 wp_enqueue_script( 'twentytwelve-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20141205', true);191 wp_enqueue_script( 'twentytwelve-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20141205', array( 'in_footer' => true ) ); 192 192 193 193 $font_url = twentytwelve_get_font_url(); … … 693 693 */ 694 694 function twentytwelve_customize_preview_js() { 695 wp_enqueue_script( 'twentytwelve-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20200516', true);695 wp_enqueue_script( 'twentytwelve-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20200516', array( 'in_footer' => true ) ); 696 696 } 697 697 add_action( 'customize_preview_init', 'twentytwelve_customize_preview_js' );
Note: See TracChangeset
for help on using the changeset viewer.