Changeset 51477 for trunk/src/wp-includes/blocks.php
- Timestamp:
- 07/22/2021 04:53:59 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r51379 r51477 347 347 * 348 348 * @since 5.0.0 349 * @since 5.8.0 First param accepts a path to the `block.json` file.349 * @since 5.8.0 First parameter now accepts a path to the `block.json` file. 350 350 * 351 351 * @param string|WP_Block_Type $block_type Block type name including namespace, or alternatively … … 723 723 * @since 5.8.0 724 724 * 725 * @param array $allowed_wrapper_blocks The listof allowed wrapper blocks.725 * @param string[] $allowed_wrapper_blocks The list of names of allowed wrapper blocks. 726 726 */ 727 727 $allowed_wrapper_blocks = apply_filters( 'excerpt_allowed_wrapper_blocks', $allowed_wrapper_blocks ); … … 737 737 * @since 5.0.0 738 738 * 739 * @param array $allowed_blocks The listof allowed blocks.739 * @param string[] $allowed_blocks The list of names of allowed blocks. 740 740 */ 741 741 $allowed_blocks = apply_filters( 'excerpt_allowed_blocks', $allowed_blocks ); … … 773 773 * for generating an excerpt. 774 774 * 775 * @since 5.8 775 * @since 5.8.0 776 776 * @access private 777 777 *
Note: See TracChangeset
for help on using the changeset viewer.