WP_Block_Type::set_props()publicWP 5.0.0

Sets block type properties.

Метод класса: WP_Block_Type{}

Хуки из метода

Возвращает

null. Ничего (null).

Использование

$WP_Block_Type = new WP_Block_Type();
$WP_Block_Type->set_props( $args );
$args(массив|строка) (обязательный)
Array or string of arguments for registering a block type. See WP_Block_Type::__construct() for information on accepted arguments.

Список изменений

С версии 5.0.0 Введена.

Код WP_Block_Type::set_props() WP 6.4.3

public function set_props( $args ) {
	$args = wp_parse_args(
		$args,
		array(
			'render_callback' => null,
		)
	);

	$args['name'] = $this->name;

	// Setup attributes if needed.
	if ( ! isset( $args['attributes'] ) || ! is_array( $args['attributes'] ) ) {
		$args['attributes'] = array();
	}

	// Register core attributes.
	foreach ( static::GLOBAL_ATTRIBUTES as $attr_key => $attr_schema ) {
		if ( ! array_key_exists( $attr_key, $args['attributes'] ) ) {
			$args['attributes'][ $attr_key ] = $attr_schema;
		}
	}

	/**
	 * Filters the arguments for registering a block type.
	 *
	 * @since 5.5.0
	 *
	 * @param array  $args       Array of arguments for registering a block type.
	 * @param string $block_type Block type name including namespace.
	 */
	$args = apply_filters( 'register_block_type_args', $args, $this->name );

	foreach ( $args as $property_name => $property_value ) {
		$this->$property_name = $property_value;
	}
}