Make WordPress Themes

Changeset 207570 for twentythirteen


Ignore:
Timestamp:
11/07/2023 11:35:39 PM (2 years ago)
Author:
themedropbox
Message:

New version of Twenty Thirteen - 4.0

Location:
twentythirteen/4.0
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • twentythirteen/4.0/css/blocks.css

    r198777 r207570  
    545545}
    546546
     547/* Details */
     548
     549.wp-block-details > summary:first-of-type {
     550    display: list-item;
     551}
     552
    547553/*--------------------------------------------------------------
    5485546.0 Blocks - Widgets
  • twentythirteen/4.0/functions.php

    r198777 r207570  
    322322
    323323    // Loads JavaScript file with functionality specific to Twenty Thirteen.
    324     wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230526', true );
     324    wp_enqueue_script(
     325        'twentythirteen-script',
     326        get_template_directory_uri() . '/js/functions.js',
     327        array( 'jquery' ),
     328        '20230526',
     329        array(
     330            'in_footer' => false, // Because involves header.
     331            'strategy'  => 'defer',
     332        )
     333    );
    325334
    326335    // Add Source Sans Pro and Bitter fonts, used in the main stylesheet.
     
    332341
    333342    // Loads our main stylesheet.
    334     wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20230808' );
     343    wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20231107' );
    335344
    336345    // Theme block stylesheet.
    337     wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20230621' );
     346    wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20231016' );
    338347
    339348    // Registers the Internet Explorer specific stylesheet.
     
    844853 */
    845854function twentythirteen_customize_preview_js() {
    846     wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20200516', true );
     855    wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20200516', array( 'in_footer' => true ) );
    847856}
    848857add_action( 'customize_preview_init', 'twentythirteen_customize_preview_js' );
  • twentythirteen/4.0/readme.txt

    r198777 r207570  
    22Contributors: wordpressdotorg
    33Requires at least: 3.6
    4 Tested up to: 6.3
     4Tested up to: 6.4
    55Requires PHP: 5.2.4
    6 Stable tag: 3.9
     6Stable tag: 4.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6565== Changelog ==
    6666
     67= 4.0 =
     68* Released: November 7, 2023
     69
     70https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_4.0
     71
    6772= 3.9 =
    6873* Released: August 8, 2023
  • twentythirteen/4.0/style.css

    r198777 r207570  
    55Author URI: https://wordpress.org/
    66Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
    7 Version: 3.9
    8 Tested up to: 6.3
     7Version: 4.0
     8Tested up to: 6.4
    99Requires at least: 3.6
    1010Requires PHP: 5.2.4
Note: See TracChangeset for help on using the changeset viewer.