From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B0D7138334 for ; Wed, 22 May 2019 05:12:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 733FAE07E2; Wed, 22 May 2019 05:12:47 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46025E07E2 for ; Wed, 22 May 2019 05:12:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A43F0344D9F for ; Wed, 22 May 2019 05:12:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86C63266 for ; Wed, 22 May 2019 05:12:43 +0000 (UTC) From: "Yury German" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yury German" Message-ID: <1558501897.fcb506212cbea55b2bd080eb918d42fb4781bfef.blueknight@gentoo> Subject: [gentoo-commits] proj/blogs-gentoo:master commit in: themes/twentysixteen/, themes/twentysixteen/template-parts/, ... X-VCS-Repository: proj/blogs-gentoo X-VCS-Files: themes/twentysixteen/functions.php themes/twentysixteen/header.php themes/twentysixteen/image.php themes/twentysixteen/inc/template-tags.php themes/twentysixteen/readme.txt themes/twentysixteen/style.css themes/twentysixteen/template-parts/content-page.php themes/twentysixteen/template-parts/content-search.php themes/twentysixteen/template-parts/content-single.php themes/twentysixteen/template-parts/content.php X-VCS-Directories: themes/twentysixteen/ themes/twentysixteen/inc/ themes/twentysixteen/template-parts/ X-VCS-Committer: blueknight X-VCS-Committer-Name: Yury German X-VCS-Revision: fcb506212cbea55b2bd080eb918d42fb4781bfef X-VCS-Branch: master Date: Wed, 22 May 2019 05:12:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 455b5a7e-1180-47d9-812b-f8a83780264c X-Archives-Hash: c54e636cc61fd769b2d9c6a6e33db995 commit: fcb506212cbea55b2bd080eb918d42fb4781bfef Author: Yury German gentoo org> AuthorDate: Wed May 22 05:11:37 2019 +0000 Commit: Yury German gentoo org> CommitDate: Wed May 22 05:11:37 2019 +0000 URL: https://gitweb.gentoo.org/proj/blogs-gentoo.git/commit/?id=fcb50621 Updating Theme twentysixteen twentysixteen.2.0 Signed-off-by: Yury German gentoo.org> themes/twentysixteen/functions.php | 4 ++-- themes/twentysixteen/header.php | 1 + themes/twentysixteen/image.php | 2 +- themes/twentysixteen/inc/template-tags.php | 18 ++++++++++++++++++ themes/twentysixteen/readme.txt | 10 ++++++++-- themes/twentysixteen/style.css | 2 +- themes/twentysixteen/template-parts/content-page.php | 2 +- themes/twentysixteen/template-parts/content-search.php | 2 +- themes/twentysixteen/template-parts/content-single.php | 2 +- themes/twentysixteen/template-parts/content.php | 2 +- 10 files changed, 35 insertions(+), 10 deletions(-) diff --git a/themes/twentysixteen/functions.php b/themes/twentysixteen/functions.php index 2c47a2d2..68e4a5ef 100644 --- a/themes/twentysixteen/functions.php +++ b/themes/twentysixteen/functions.php @@ -12,7 +12,7 @@ * the parent theme's file, so the child theme functions would be used. * * @link https://codex.wordpress.org/Theme_Development - * @link https://codex.wordpress.org/Child_Themes + * @link https://developer.wordpress.org/themes/advanced-topics/child-themes/ * * Functions that are not pluggable (not wrapped in function_exists()) are * instead attached to a filter or action hook. @@ -81,7 +81,7 @@ if ( ! function_exists( 'twentysixteen_setup' ) ) : /* * Enable support for Post Thumbnails on posts and pages. * - * @link https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails + * @link https://developer.wordpress.org/reference/functions/add_theme_support/#post-thumbnails */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 1200, 9999 ); diff --git a/themes/twentysixteen/header.php b/themes/twentysixteen/header.php index f264ac2c..a5cfee6a 100644 --- a/themes/twentysixteen/header.php +++ b/themes/twentysixteen/header.php @@ -22,6 +22,7 @@ > +
diff --git a/themes/twentysixteen/image.php b/themes/twentysixteen/image.php index 5fcbb901..ea64a146 100644 --- a/themes/twentysixteen/image.php +++ b/themes/twentysixteen/image.php @@ -93,7 +93,7 @@ get_header(); ?> ); ?> - + tag. + * + * @since Twenty Sixteen 2.0 + */ + do_action( 'wp_body_open' ); + } +endif; diff --git a/themes/twentysixteen/readme.txt b/themes/twentysixteen/readme.txt index dcc28905..24b3428c 100644 --- a/themes/twentysixteen/readme.txt +++ b/themes/twentysixteen/readme.txt @@ -1,8 +1,9 @@ === Twenty Sixteen === -Contributors: the WordPress team +Contributors: wordpressdotorg Requires at least: WordPress 4.4 Tested up to: WordPress 5.0 -Version: 1.9 +Requires PHP: 5.2.4 +Version: 2.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog @@ -56,6 +57,11 @@ Image used in screenshot.png: A photo by Austin Schmid (https://unsplash.com/sch == Changelog == += 2.0 = +* Released: May 7, 2019 + +https://codex.wordpress.org/Twenty_Sixteen_Theme_Changelog#Version_2.0 + = 1.9 = * Released: February 21, 2019 diff --git a/themes/twentysixteen/style.css b/themes/twentysixteen/style.css index 90c8b4c4..ab7e95da 100644 --- a/themes/twentysixteen/style.css +++ b/themes/twentysixteen/style.css @@ -4,7 +4,7 @@ Theme URI: https://wordpress.org/themes/twentysixteen/ Author: the WordPress team Author URI: https://wordpress.org/ Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere. -Version: 1.9 +Version: 2.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog diff --git a/themes/twentysixteen/template-parts/content-page.php b/themes/twentysixteen/template-parts/content-page.php index d1ee87c6..689972c0 100644 --- a/themes/twentysixteen/template-parts/content-page.php +++ b/themes/twentysixteen/template-parts/content-page.php @@ -44,4 +44,4 @@ ); ?> - + diff --git a/themes/twentysixteen/template-parts/content-search.php b/themes/twentysixteen/template-parts/content-search.php index c4667c6b..7d587f65 100644 --- a/themes/twentysixteen/template-parts/content-search.php +++ b/themes/twentysixteen/template-parts/content-search.php @@ -49,5 +49,5 @@ ?> - + diff --git a/themes/twentysixteen/template-parts/content-single.php b/themes/twentysixteen/template-parts/content-single.php index d1061b27..23e18373 100644 --- a/themes/twentysixteen/template-parts/content-single.php +++ b/themes/twentysixteen/template-parts/content-single.php @@ -52,4 +52,4 @@ ); ?> - + diff --git a/themes/twentysixteen/template-parts/content.php b/themes/twentysixteen/template-parts/content.php index cf88417f..03b4cfb6 100644 --- a/themes/twentysixteen/template-parts/content.php +++ b/themes/twentysixteen/template-parts/content.php @@ -58,4 +58,4 @@ ); ?> - +