Make WordPress Core


Ignore:
Timestamp:
05/03/2022 02:58:54 PM (19 months ago)
Author:
hellofromTonya
Message:

Editor: Update WordPress packages for 6.0 RC1.

Included cherry-picked commits from the Gutenberg plugin that fix bugs discovered after WordPress 6.0 Beta 4.

Props gziolo, zieladam, ndiego.

See #55567.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/comments-title.php

    r53329 r53338  
    1414 */
    1515function render_block_core_comments_title( $attributes ) {
     16
     17    if ( post_password_required() ) {
     18        return;
     19    }
    1620
    1721    $align_class_name    = empty( $attributes['textAlign'] ) ? '' : "has-text-align-{$attributes['textAlign']}";
Note: See TracChangeset for help on using the changeset viewer.