Make WordPress Core


Ignore:
Timestamp:
07/08/2021 05:27:27 PM (5 years ago)
Author:
jorbin
Message:

Posts: Prevent an empty excerpt when groups and nested column blocks are present.

This improves the logic within excerpt_remove_blocks() to better handle innerBlocks. This prevents an empty excerpt from being returned when core/columns, core/column, and core/group blocks are present.

This issue has been surfaced in the Query Loop block, where excerpts can be set to display.

This introduces the excerpt_allowed_wrapper_blocks filter for controlling which blocks should be considered wrapper blocks.

Wrapper blocks and their nested contents are not stripped by excerpt_remove_blocks(), allowing their contents to appear in generated excerpts.

Backports [51348], [51375], [51378], and [51379] to the 5.8 branch.

Fixes #53604.
Props aristath, jorbin, SergeyBiryukov, desrosj.
Unprops jorbin.

Location:
branches/5.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.8

  • branches/5.8/src/wp-includes/blocks.php

    r51363 r51382  
    711711        );
    712712
    713         $allowed_blocks = array_merge( $allowed_inner_blocks, array( 'core/columns' ) );
     713        $allowed_wrapper_blocks = array(
     714                'core/columns',
     715                'core/column',
     716                'core/group',
     717        );
     718
     719        /**
     720         * Filters the list of blocks that can be used as wrapper blocks, allowing
     721         * excerpts to be generated from the `innerBlocks` of these wrappers.
     722         *
     723         * @since 5.8.0
     724         *
     725         * @param array $allowed_wrapper_blocks The list of allowed wrapper blocks.
     726         */
     727        $allowed_wrapper_blocks = apply_filters( 'excerpt_allowed_wrapper_blocks', $allowed_wrapper_blocks );
     728
     729        $allowed_blocks = array_merge( $allowed_inner_blocks, $allowed_wrapper_blocks );
    714730
    715731        /**
     
    730746                if ( in_array( $block['blockName'], $allowed_blocks, true ) ) {
    731747                        if ( ! empty( $block['innerBlocks'] ) ) {
    732                                 if ( 'core/columns' === $block['blockName'] ) {
    733                                         $output .= _excerpt_render_inner_columns_blocks( $block, $allowed_inner_blocks );
     748                                if ( in_array( $block['blockName'], $allowed_wrapper_blocks, true ) ) {
     749                                        $output .= _excerpt_render_inner_blocks( $block, $allowed_blocks );
    734750                                        continue;
    735751                                }
     
    754770
    755771/**
    756  * Render inner blocks from the `core/columns` block for generating an excerpt.
    757  *
    758  * @since 5.2.0
     772 * Render inner blocks from the allowed wrapper blocks
     773 * for generating an excerpt.
     774 *
     775 * @since 5.8
    759776 * @access private
    760777 *
    761  * @param array $columns        The parsed columns block.
     778 * @param array $parsed_block   The parsed block.
    762779 * @param array $allowed_blocks The list of allowed inner blocks.
    763780 * @return string The rendered inner blocks.
    764781 */
    765 function _excerpt_render_inner_columns_blocks( $columns, $allowed_blocks ) {
     782function _excerpt_render_inner_blocks( $parsed_block, $allowed_blocks ) {
    766783        $output = '';
    767784
    768         foreach ( $columns['innerBlocks'] as $column ) {
    769                 foreach ( $column['innerBlocks'] as $inner_block ) {
    770                         if ( in_array( $inner_block['blockName'], $allowed_blocks, true ) && empty( $inner_block['innerBlocks'] ) ) {
    771                                 $output .= render_block( $inner_block );
    772                         }
     785        foreach ( $parsed_block['innerBlocks'] as $inner_block ) {
     786                if ( ! in_array( $inner_block['blockName'], $allowed_blocks, true ) ) {
     787                        continue;
     788                }
     789
     790                if ( empty( $inner_block['innerBlocks'] ) ) {
     791                        $output .= render_block( $inner_block );
     792                } else {
     793                        $output .= _excerpt_render_inner_blocks( $inner_block, $allowed_blocks );
    773794                }
    774795        }
Note: See TracChangeset for help on using the changeset viewer.