Summery Summery
Returns the content of a block, including comment delimiters.
Syntax Syntax
Parameters Parameters
- $block_name
-
(Optional) Block name.
Default value: null
- $block_attributes
-
(Required) Block attributes.
- $block_content
-
(Required) Block save content.
Return Return
(string) Comment-delimited block content.
Source Source
File: wp-includes/blocks.php
function get_comment_delimited_block_content( $block_name = null, $block_attributes, $block_content ) {
if ( is_null( $block_name ) ) {
return $block_content;
}
$serialized_block_name = strip_core_block_namespace( $block_name );
$serialized_attributes = empty( $block_attributes ) ? '' : serialize_block_attributes( $block_attributes ) . ' ';
if ( empty( $block_content ) ) {
return sprintf( '<!-- wp:%s %s/-->', $serialized_block_name, $serialized_attributes );
}
return sprintf(
'<!-- wp:%s %s-->%s<!-- /wp:%s -->',
$serialized_block_name,
$serialized_attributes,
$block_content,
$serialized_block_name
);
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 5.3.1 | Introduced. |