Make WordPress Core

Changeset 49583


Ignore:
Timestamp:
11/12/2020 09:12:32 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Bundled Themes: Introduce block patterns for Twenty Sixteen.

Props melchoyce, kjellr, onemaggie, ryelle, beafialho, bridgetwillard, poena, jffng.
Fixes #51101.

Location:
trunk/src/wp-content/themes/twentysixteen
Files:
1 added
3 edited

Legend:

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

    r49208 r49583  
    217217        // Indicate widget sidebars can use selective refresh in the Customizer.
    218218        add_theme_support( 'customize-selective-refresh-widgets' );
     219
     220        // Add support for custom line height controls.
     221        add_theme_support( 'custom-line-height' );
    219222    }
    220223endif; // twentysixteen_setup()
     
    508511
    509512/**
     513 * Block Patterns.
     514 */
     515require get_template_directory() . '/inc/block-patterns.php';
     516
     517/**
    510518 * Customizer additions.
    511519 */
  • trunk/src/wp-content/themes/twentysixteen/readme.txt

    r49322 r49583  
    55License: GPLv2 or later
    66License URI: http://www.gnu.org/licenses/gpl-2.0.html
    7 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
     7Tags: 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, block-patterns
    88
    99== Description ==
  • trunk/src/wp-content/themes/twentysixteen/style.css

    r49470 r49583  
    1010License: GNU General Public License v2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
    12 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
     12Tags: 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, block-patterns
    1313Text Domain: twentysixteen
    1414
Note: See TracChangeset for help on using the changeset viewer.