has_block()
Determines whether the given string or content of the given post contains the specified block (Gutenberg block editor).
This check is optimized for achieving the highest speed rather than accuracy in block determination; it only identifies the block but not its structure. To achieve strict accuracy, use the block parser: parse_blocks.
Use has_blocks() to check if there is at least one block in the string.
Uses: has_blocks()
Used By: get_post_galleries()
1 time — 0.000001 sec (speed of light) | 50000 times — 0.02 sec (speed of light) | PHP 7.3.20, WP 5.5.1
No Hooks.
Returns
true|false. Depending on whether the content of the post contains the specified block.
Usage
has_block( $block_name, $post );
- $block_name(string) (required)
- The name of the block to find (identify), as specified in the HTML comment:
<!-- wp:block_name -->. - $post(int/string/WP_Post/null)
- A string or ID of the post, or a post object.
Default: global $post
Examples
#1 Does the post content contain a gallery block
// Checking the presence of the gutenberg block in the post content
if( has_block('gallery' , 1234 ) ){
// the post with ID 1234 contains a gallery block
} #2 Does (string) contain a gallery block
$string= '<!-- wp:gallery {"ids" : [123, 456, 789 ]} -->';
// print true
if( has_block( 'gallery', $string ) ){
// (string) contains a gallery block
}
Notes
- See: parse_blocks()
Changelog
| Since 5.0.0 | Introduced. |