Make WordPress Core


Ignore:
Timestamp:
03/07/2023 04:25:27 PM (3 years ago)
Author:
desrosj
Message:

Bundled Themes: Bump version numbers for WordPress 6.2.

In coordination with the release of 6.2, a new version of each bundled theme will also be released. This bumps the version of each theme to the following:

  • Twenty Ten: 3.8
  • Twenty Eleven: 4.3
  • Twenty Twelve: 3.9
  • Twenty Thirteen: 3.8
  • Twenty Fourteen: 3.6
  • Twenty Fifteen: 3.4
  • Twenty Sixteen: 2.9
  • Twenty Seventeen: 3.2
  • Twenty Nineteen: 2.5
  • Twenty Twenty: 2.2
  • Twenty Twenty-One: 1.8
  • Twenty Twenty-Two: 1.4
  • Twenty Twenty-Three: 1.1

Props robinwpdeveloper, costdev, audrasjb, sabernhardt, desrosj.
Fixes #57689.

File:
1 edited

Legend:

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

    r55420 r55476  
    191191
    192192        // Loads our main stylesheet.
    193         wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri(), array(), '20221101' );
     193        wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri(), array(), '20230328' );
    194194
    195195        // Theme block stylesheet.
    196         wp_enqueue_style( 'twentytwelve-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentytwelve-style' ), '20190406' );
     196        wp_enqueue_style( 'twentytwelve-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentytwelve-style' ), '20230213' );
    197197
    198198        // Loads the Internet Explorer specific stylesheet.
     
    209209function twentytwelve_block_editor_styles() {
    210210        // Block styles.
    211         wp_enqueue_style( 'twentytwelve-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20200713' );
     211        wp_enqueue_style( 'twentytwelve-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20230213' );
    212212        // Add custom fonts.
    213213        $font_version = ( 0 === strpos( (string) twentytwelve_get_font_url(), get_template_directory_uri() . '/' ) ) ? '20230328' : null;
Note: See TracChangeset for help on using the changeset viewer.