Automattic\WooCommerce\Admin\API

ProductAttributes::register_routes()publicWC 1.0

Register the routes for custom product attributes.

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

Хуков нет.

Возвращает

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

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

$ProductAttributes = new ProductAttributes();
$ProductAttributes->register_routes();

Код ProductAttributes::register_routes() WC 8.7.0

public function register_routes() {
	parent::register_routes();

	register_rest_route(
		$this->namespace,
		'products/attributes/(?P<slug>[a-z0-9_\-]+)',
		array(
			'args'   => array(
				'slug' => array(
					'description' => __( 'Slug identifier for the resource.', 'woocommerce' ),
					'type'        => 'string',
				),
			),
			array(
				'methods'             => \WP_REST_Server::READABLE,
				'callback'            => array( $this, 'get_item_by_slug' ),
				'permission_callback' => array( $this, 'get_items_permissions_check' ),
			),
			'schema' => array( $this, 'get_public_item_schema' ),
		)
	);
}