WP_Block_Patterns_Registry::is_registered( string|null $pattern_name ): bool

In this article

Checks if a block pattern is registered.

Parameters

$pattern_namestring|nullrequired
Block pattern name including namespace.

Return

bool True if the pattern is registered, false otherwise.

Source

public function is_registered( $pattern_name ) {
	return isset( $pattern_name, $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.