Changeset 54492 for trunk/src/wp-content/themes/twentyfifteen/functions.php
- Timestamp:
- 10/11/2022 05:03:08 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfifteen/functions.php
r53418 r54492 436 436 437 437 // Add Genericons, used in the main stylesheet. 438 wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '20201 208' );438 wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '20201026' ); 439 439 440 440 // Load our main stylesheet. 441 wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri(), array(), '202 01208' );441 wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri(), array(), '20221101' ); 442 442 443 443 // Theme block stylesheet. 444 wp_enqueue_style( 'twentyfifteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentyfifteen-style' ), '20220 524' );444 wp_enqueue_style( 'twentyfifteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentyfifteen-style' ), '20220914' ); 445 445 446 446 // Load the Internet Explorer specific stylesheet. 447 wp_enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20 170916' );447 wp_enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20220908' ); 448 448 wp_style_add_data( 'twentyfifteen-ie', 'conditional', 'lt IE 9' ); 449 449 … … 462 462 } 463 463 464 wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '2022 0524', true );464 wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20221101', true ); 465 465 wp_localize_script( 466 466 'twentyfifteen-script', … … 481 481 function twentyfifteen_block_editor_styles() { 482 482 // Block styles. 483 wp_enqueue_style( 'twentyfifteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '202 01208' );483 wp_enqueue_style( 'twentyfifteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20220908' ); 484 484 // Add custom fonts. 485 485 wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), null );
Note: See TracChangeset
for help on using the changeset viewer.