mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Posts: Allow the list of wrapper blocks to be filtered.
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. Follow up to [51348]. Props aristath, jorbin. See #53604. git-svn-id: https://develop.svn.wordpress.org/trunk@51375 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -716,6 +716,16 @@ function excerpt_remove_blocks( $content ) {
|
||||
'core/group',
|
||||
);
|
||||
|
||||
/**
|
||||
* Filters the list of blocks that can be used as wrapper blocks, allowing
|
||||
* excerpts to be generated from the `innerBlocks` of these warppers.
|
||||
*
|
||||
* @since 5.8.0
|
||||
*
|
||||
* @param array $allowed_wrapper_blocks The list of allowed wrapper blocks.
|
||||
*/
|
||||
$allowed_wrapper_blocks = apply_filters( 'excerpt_allowed_wrapper_blocks', $allowed_wrapper_blocks );
|
||||
|
||||
$allowed_blocks = array_merge( $allowed_inner_blocks, $allowed_wrapper_blocks );
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user