WP_Block_Pattern_Categories_Registry::is_registered( string $category_name ): bool

Checks if a pattern category is registered.


Parameters

$category_name string Required
Pattern category name including namespace.

Top ↑

Return

bool True if the pattern category is registered, false otherwise.


Top ↑

Source

File: wp-includes/class-wp-block-pattern-categories-registry.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
5.5.0 Introduced.

Top ↑

User Contributed Notes

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