Make WordPress Core


Ignore:
Timestamp:
04/16/2019 02:06:33 PM (5 years ago)
Author:
desrosj
Message:

Twenty Thirteen: Correct Genericons stylesheet version number.

In [28693], the Genericons stylesheet was updated to 3.0.3, but the version was incorrectly indicated as 3.03.

See #39997.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentythirteen/functions.php

    r45081 r45212  
    279279
    280280    // Add Genericons font, used in the main stylesheet.
    281     wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.03' );
     281    wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
    282282
    283283    // Loads our main stylesheet.
     
    325325function twentythirteen_block_editor_styles() {
    326326    // Block styles.
    327     wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '2018-12-30' );
     327    wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), wp_get_theme()->get( 'Version' ) );
    328328    // Add custom fonts.
    329329    wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
Note: See TracChangeset for help on using the changeset viewer.