Changeset 45767 for trunk/src/wp-content/themes/twentysixteen/functions.php
- Timestamp:
- 08/08/2019 01:24:32 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentysixteen/functions.php
r45675 r45767 369 369 370 370 // Theme stylesheet. 371 wp_enqueue_style( 'twentysixteen-style', get_stylesheet_uri() );371 wp_enqueue_style( 'twentysixteen-style', get_stylesheet_uri(), array(), '20190507' ); 372 372 373 373 // Theme block stylesheet. 374 wp_enqueue_style( 'twentysixteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentysixteen-style' ), '201 81230' );374 wp_enqueue_style( 'twentysixteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentysixteen-style' ), '20190102' ); 375 375 376 376 // Load the Internet Explorer specific stylesheet. 377 wp_enqueue_style( 'twentysixteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentysixteen-style' ), '201 60816' );377 wp_enqueue_style( 'twentysixteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentysixteen-style' ), '20170530' ); 378 378 wp_style_add_data( 'twentysixteen-ie', 'conditional', 'lt IE 10' ); 379 379 380 380 // Load the Internet Explorer 8 specific stylesheet. 381 wp_enqueue_style( 'twentysixteen-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'twentysixteen-style' ), '201 60816' );381 wp_enqueue_style( 'twentysixteen-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'twentysixteen-style' ), '20170530' ); 382 382 wp_style_add_data( 'twentysixteen-ie8', 'conditional', 'lt IE 9' ); 383 383 384 384 // Load the Internet Explorer 7 specific stylesheet. 385 wp_enqueue_style( 'twentysixteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentysixteen-style' ), '201 60816' );385 wp_enqueue_style( 'twentysixteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentysixteen-style' ), '20170530' ); 386 386 wp_style_add_data( 'twentysixteen-ie7', 'conditional', 'lt IE 8' ); 387 387 … … 420 420 function twentysixteen_block_editor_styles() { 421 421 // Block styles. 422 wp_enqueue_style( 'twentysixteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '201 81230' );422 wp_enqueue_style( 'twentysixteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20190102' ); 423 423 // Add custom fonts. 424 424 wp_enqueue_style( 'twentysixteen-fonts', twentysixteen_fonts_url(), array(), null );
Note: See TracChangeset
for help on using the changeset viewer.