Changeset 48794 for trunk/src/wp-includes/blocks.php
- Timestamp:
- 08/15/2020 01:38:52 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r48629 r48794 398 398 * @since 5.3.1 399 399 * 400 * @param string $block_name Block name. 401 * @param array $block_attributes Block attributes. 402 * @param string $block_content Block save content. 400 * @param string|null $block_name Block name. Null if the block name is unknown, 401 * e.g. Classic blocks have their name set to null. 402 * @param array $block_attributes Block attributes. 403 * @param string $block_content Block save content. 403 404 * @return string Comment-delimited block content. 404 405 */ 405 function get_comment_delimited_block_content( $block_name = null, $block_attributes, $block_content ) {406 function get_comment_delimited_block_content( $block_name, $block_attributes, $block_content ) { 406 407 if ( is_null( $block_name ) ) { 407 408 return $block_content;
Note: See TracChangeset
for help on using the changeset viewer.