Tribe__Editor__Blocks__Abstract::has_block( int|string|WP_Post|null $post = null )
Determine whether a post or content string has this block.
Contents
This test optimizes for performance rather than strict accuracy, detecting the pattern of a block but not validating its structure. For strict accuracy you should use the block parser on post content.
See also
Parameters
- $post
-
(int|string|WP_Post|null) (Optional) Post content, post ID, or post object. Defaults to global $post.
Default value: null
Return
(bool) Whether the post has this block.
Source
File: src/Tribe/Editor/Blocks/Abstract.php
public function has_block( $post = null ) {
if ( ! is_numeric( $post ) ) {
$wp_post = get_post( $post );
if ( $wp_post instanceof WP_Post ) {
$post = $wp_post->post_content;
}
}
return false !== strpos( (string) $post, '<!-- wp:' . $this->name() );
}
Changelog
| Version | Description |
|---|---|
| 5.1.5 | Added a has_block filter. |
| 4.8 | Introduced. |