GC_Block_Pattern_Categories_Registry::register()

最后更新于:2021-11-26 10:30:23

GC_Block_Pattern_Categories_Registry::register( string$category_name, array$category_properties)

Registers a pattern category.

参数

$category_name

(string) (Required) Pattern category name including namespace.

$category_properties

(array) (Required) Array containing the properties of the category: label.

响应

(bool) True if the pattern was registered with success and false otherwise.

源文件

文件: gc-includes/class-gc-block-pattern-categories-registry.php

	public function register( $category_name, $category_properties ) {
		if ( ! isset( $category_name ) || ! is_string( $category_name ) ) {
			_doing_it_wrong(
				__METHOD__,
				__( 'Block pattern category name must be a string.' ),
				'5.5.0'
			);
			return false;
		}

		$this->registered_categories[ $category_name ] = array_merge(
			array( 'name' => $category_name ),
			$category_properties
		);

		return true;
	}