Changeset 198777 for twentythirteen
- Timestamp:
- 08/08/2023 07:56:49 PM (2 years ago)
- Location:
- twentythirteen/3.9
- Files:
-
- 6 edited
- 1 copied
-
. (copied) (copied from twentythirteen/3.8)
-
css/blocks.css (modified) (1 diff)
-
functions.php (modified) (3 diffs)
-
header.php (modified) (2 diffs)
-
js/functions.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
twentythirteen/3.9/css/blocks.css
r188115 r198777 272 272 273 273 .wp-block-table { 274 border-bottom: 1px solid #ededed;275 274 border-collapse: collapse; 276 275 border-spacing: 0; -
twentythirteen/3.9/functions.php
r188115 r198777 76 76 * replace to change 'twentythirteen' to the name of your theme in all 77 77 * 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 } 80 87 81 88 /* … … 315 322 316 323 // Loads JavaScript file with functionality specific to Twenty Thirteen. 317 wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '202 10122', true );324 wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230526', true ); 318 325 319 326 // Add Source Sans Pro and Bitter fonts, used in the main stylesheet. … … 325 332 326 333 // Loads our main stylesheet. 327 wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20230 328' );334 wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20230808' ); 328 335 329 336 // Theme block stylesheet. 330 wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20230 122' );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' ); 334 341 wp_style_add_data( 'twentythirteen-ie', 'conditional', 'lt IE 9' ); 335 342 } -
twentythirteen/3.9/header.php
r188115 r198777 10 10 */ 11 11 ?><!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)]><!-->19 12 <html <?php language_attributes(); ?>> 20 <!--<![endif]-->21 13 <head> 22 14 <meta charset="<?php bloginfo( 'charset' ); ?>"> … … 25 17 <link rel="profile" href="https://gmpg.org/xfn/11"> 26 18 <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]-->30 19 <?php wp_head(); ?> 31 20 </head> -
twentythirteen/3.9/js/functions.js
r151901 r198777 102 102 103 103 /** 104 * Makes "skip to content" link work correctly in IE9 and Chrome for better105 * 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 /**122 104 * Arranges footer widgets vertically. 123 105 */ -
twentythirteen/3.9/readme.txt
r188115 r198777 1 1 === Twenty Thirteen === 2 2 Contributors: wordpressdotorg 3 Tested up to: 6.2 4 Stable tag: 3.8 3 Requires at least: 3.6 4 Tested up to: 6.3 5 Requires PHP: 5.2.4 6 Stable tag: 3.9 5 7 License: GPLv2 or later 6 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 63 65 == Changelog == 64 66 67 = 3.9 = 68 * Released: August 8, 2023 69 70 https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_3.9 71 65 72 = 3.8 = 66 73 * Released: March 28, 2023 -
twentythirteen/3.9/style.css
r188115 r198777 5 5 Author URI: https://wordpress.org/ 6 6 Description: 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. 88 Tested up to: 6. 27 Version: 3.9 8 Tested up to: 6.3 9 9 Requires at least: 3.6 10 10 Requires PHP: 5.2.4
Note: See TracChangeset
for help on using the changeset viewer.