- Timestamp:
- 10/11/2022 05:03:08 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/functions.php
r53418 r54492 311 311 312 312 // Loads JavaScript file with functionality specific to Twenty Thirteen. 313 wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20 171218', true );313 wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20210122', true ); 314 314 315 315 // Add Source Sans Pro and Bitter fonts, used in the main stylesheet. … … 320 320 321 321 // Loads our main stylesheet. 322 wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '2022 0524' );322 wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20221101' ); 323 323 324 324 // Theme block stylesheet. 325 wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20 190102' );325 wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20210622' ); 326 326 327 327 // Loads the Internet Explorer specific stylesheet. … … 363 363 function twentythirteen_block_editor_styles() { 364 364 // Block styles. 365 wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '202 01208' );365 wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20210621' ); 366 366 // Add custom fonts. 367 367 wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null ); … … 813 813 */ 814 814 function twentythirteen_customize_preview_js() { 815 wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20 141120', true );815 wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20200516', true ); 816 816 } 817 817 add_action( 'customize_preview_init', 'twentythirteen_customize_preview_js' );
Note: See TracChangeset
for help on using the changeset viewer.