WP_Block_Patterns_Registry::is_registered( string $pattern_name ): bool

In this article

Checks if a block pattern is registered.

Parameters

$pattern_namestringrequired
Block pattern name including namespace.

Return

bool True if the pattern is registered, false otherwise.

Source

public function is_registered( $pattern_name ) {
	return isset( $this->registered_patterns[ $pattern_name ] );
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.