wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



has_blocks › WordPress Function

Desde5.0.0
Obsoleton/a
has_blocks ( $post = null )
Parâmetros:
  • (int|string|WP_Post|null) $post Optional. Post content, post ID, or post object. Defaults to global $post.
    Required: No
    Padrão: null
Ver:
Retorna:
  • (bool) Whether the post has blocks.
Definido em:
Codex:

Determines whether a post or content string has blocks.

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.


Fonte

function has_blocks( $post = null ) {
	if ( ! is_string( $post ) ) {
		$wp_post = get_post( $post );

		if ( ! $wp_post instanceof WP_Post ) {
			return false;
		}

		$post = $wp_post->post_content;
	}

	return str_contains( (string) $post, '<!-- wp:' );
}