Make WordPress Core


Ignore:
Timestamp:
11/04/2024 11:57:55 PM (3 months ago)
Author:
peterwilsoncc
Message:

Bundled Themes: Bump default theme versions for release with 6.7.

This updates the version of each default theme to the following versions:

  • Twenty Ten: 4.3
  • Twenty Eleven: 4.8
  • Twenty Twelve: 4.4
  • Twenty Thirteen: 4.3
  • Twenty Fourteen: 4.1
  • Twenty Fifteen: 3.9
  • Twenty Sixteen: 3.4
  • Twenty Seventeen: 3.8
  • Twenty Nineteen: 3.0
  • Twenty Twenty: 2.8
  • Twenty Twenty-One: 2.4
  • Twenty Twenty-Two: 1.9
  • Twenty Twenty-Three: 1.6
  • Twenty Twenty-Four: 1.3

These versions will released in coordination with WordPress 6.7.

Props sh4lin, sabernhardt, mukesh27, chaion07.
Fixes #62034.

File:
1 edited

Legend:

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

    r59244 r59344  
    213213
    214214    // Loads our main stylesheet.
    215     wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri(), array(), '20240716' );
     215    wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri(), array(), '20241112' );
    216216
    217217    // Theme block stylesheet.
    218     wp_enqueue_style( 'twentytwelve-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentytwelve-style' ), '20240603' );
     218    wp_enqueue_style( 'twentytwelve-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentytwelve-style' ), '20240812' );
    219219
    220220    // Loads the Internet Explorer specific stylesheet.
    221     wp_enqueue_style( 'twentytwelve-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentytwelve-style' ), '20150214' );
     221    wp_enqueue_style( 'twentytwelve-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentytwelve-style' ), '20240722' );
    222222    $wp_styles->add_data( 'twentytwelve-ie', 'conditional', 'lt IE 9' );
    223223}
     
    231231function twentytwelve_block_editor_styles() {
    232232    // Block styles.
    233     wp_enqueue_style( 'twentytwelve-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20240506' );
     233    wp_enqueue_style( 'twentytwelve-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20240811' );
    234234    // Add custom fonts.
    235235    $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.