Make WordPress Themes

Changeset 198777 for twentythirteen


Ignore:
Timestamp:
08/08/2023 07:56:49 PM (2 years ago)
Author:
themedropbox
Message:

New version of Twenty Thirteen - 3.9

Location:
twentythirteen/3.9
Files:
6 edited
1 copied

Legend:

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

    r188115 r198777  
    272272
    273273.wp-block-table {
    274     border-bottom: 1px solid #ededed;
    275274    border-collapse: collapse;
    276275    border-spacing: 0;
  • twentythirteen/3.9/functions.php

    r188115 r198777  
    7676     * replace to change 'twentythirteen' to the name of your theme in all
    7777     * template files.
    78      */
    79     load_theme_textdomain( 'twentythirteen' );
     78     *
     79     * Manual loading of text domain is not required after the introduction of
     80     * just in time translation loading in WordPress version 4.6.
     81     *
     82     * @ticket 58318
     83     */
     84    if ( version_compare( $GLOBALS['wp_version'], '4.6', '<' ) ) {
     85        load_theme_textdomain( 'twentythirteen' );
     86    }
    8087
    8188    /*
     
    315322
    316323    // Loads JavaScript file with functionality specific to Twenty Thirteen.
    317     wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20210122', true );
     324    wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230526', true );
    318325
    319326    // Add Source Sans Pro and Bitter fonts, used in the main stylesheet.
     
    325332
    326333    // Loads our main stylesheet.
    327     wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20230328' );
     334    wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20230808' );
    328335
    329336    // Theme block stylesheet.
    330     wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20230122' );
    331 
    332     // Loads the Internet Explorer specific stylesheet.
    333     wp_enqueue_style( 'twentythirteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentythirteen-style' ), '20150214' );
     337    wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20230621' );
     338
     339    // Registers the Internet Explorer specific stylesheet.
     340    wp_register_style( 'twentythirteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentythirteen-style' ), '20150214' );
    334341    wp_style_add_data( 'twentythirteen-ie', 'conditional', 'lt IE 9' );
    335342}
  • twentythirteen/3.9/header.php

    r188115 r198777  
    1010 */
    1111?><!DOCTYPE html>
    12 <!--[if IE 7]>
    13 <html class="ie ie7" <?php language_attributes(); ?>>
    14 <![endif]-->
    15 <!--[if IE 8]>
    16 <html class="ie ie8" <?php language_attributes(); ?>>
    17 <![endif]-->
    18 <!--[if !(IE 7) & !(IE 8)]><!-->
    1912<html <?php language_attributes(); ?>>
    20 <!--<![endif]-->
    2113<head>
    2214    <meta charset="<?php bloginfo( 'charset' ); ?>">
     
    2517    <link rel="profile" href="https://gmpg.org/xfn/11">
    2618    <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
    27     <!--[if lt IE 9]>
    28     <script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js?ver=3.7.0"></script>
    29     <![endif]-->
    3019    <?php wp_head(); ?>
    3120</head>
  • twentythirteen/3.9/js/functions.js

    r151901 r198777  
    102102
    103103    /**
    104      * Makes "skip to content" link work correctly in IE9 and Chrome for better
    105      * accessibility.
    106      *
    107      * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
    108      */
    109     _window.on( 'hashchange.twentythirteen', function() {
    110         var element = document.getElementById( location.hash.substring( 1 ) );
    111 
    112         if ( element ) {
    113             if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) {
    114                 element.tabIndex = -1;
    115             }
    116 
    117             element.focus();
    118         }
    119     } );
    120 
    121     /**
    122104     * Arranges footer widgets vertically.
    123105     */
  • twentythirteen/3.9/readme.txt

    r188115 r198777  
    11=== Twenty Thirteen ===
    22Contributors: wordpressdotorg
    3 Tested up to: 6.2
    4 Stable tag: 3.8
     3Requires at least: 3.6
     4Tested up to: 6.3
     5Requires PHP: 5.2.4
     6Stable tag: 3.9
    57License: GPLv2 or later
    68License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6365== Changelog ==
    6466
     67= 3.9 =
     68* Released: August 8, 2023
     69
     70https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_3.9
     71
    6572= 3.8 =
    6673* Released: March 28, 2023
  • twentythirteen/3.9/style.css

    r188115 r198777  
    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.8
    8 Tested up to: 6.2
     7Version: 3.9
     8Tested up to: 6.3
    99Requires at least: 3.6
    1010Requires PHP: 5.2.4
Note: See TracChangeset for help on using the changeset viewer.