Make WordPress Core


Ignore:
Timestamp:
05/21/2021 10:12:42 AM (4 years ago)
Author:
youknowriad
Message:

Block Editor: Updated the WordPress packages from Gutenberg 10.7.0 RC.

This also includes:

  • The removal of the Post Author block.
  • Renaming build_query_vars_from_query_block function.
  • Update the block supports.

Props gziolo.
See #52991.
-This line, and those below, will be ignored--

M package-lock.json
M package.json
M src/wp-includes/assets/script-loader-packages.php
M src/wp-includes/block-supports/colors.php
AM src/wp-includes/block-supports/elements.php
D src/wp-includes/block-supports/padding.php
AM src/wp-includes/block-supports/spacing.php
M src/wp-includes/block-supports/typography.php
M src/wp-includes/blocks/column/block.json
M src/wp-includes/blocks/index.php
D src/wp-includes/blocks/post-author
D src/wp-includes/blocks/post-author.php
M src/wp-includes/blocks/post-content.php
M src/wp-includes/blocks/post-featured-image.php
M src/wp-includes/blocks/query/block.json
M src/wp-includes/blocks/query-loop/block.json
M src/wp-includes/blocks/query-loop.php
M src/wp-includes/blocks/query-pagination/block.json
M src/wp-includes/blocks/query-pagination-next.php
M src/wp-includes/blocks/query-pagination-numbers.php
M src/wp-includes/blocks/site-tagline/block.json
M src/wp-includes/blocks/site-title/block.json
M src/wp-includes/blocks.php
M src/wp-settings.php
M tests/phpunit/tests/blocks/block.php
M tools/webpack/packages.js

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/post-content.php

    r50929 r50945  
    5050
    5151    $content = get_the_content( null, false, $post_id );
     52    /** This filter is documented in wp-includes/post-template.php */
     53    $content = apply_filters( 'the_content', str_replace( ']]>', ']]>', $content ) );
     54    unset( $seen_ids[ $post_id ] );
    5255
    5356    if ( empty( $content ) ) {
    54         unset( $seen_ids[ $post_id ] );
    5557        return '';
    5658    }
    5759
    5860    $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => 'entry-content' ) );
    59     /** This filter is documented in wp-includes/post-template.php */
    60     $content = apply_filters( 'the_content', str_replace( ']]>', ']]>', $content ) );
    61     unset( $seen_ids[ $post_id ] );
    6261
    6362    return (
Note: See TracChangeset for help on using the changeset viewer.