WP_REST_Font_Faces_Controller::get_items()publicWP 6.5.0

Retrieves a collection of font faces within the parent font family.

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

Хуков нет.

Возвращает

WP_REST_Response|WP_Error. Response object on success, or WP_Error object on failure.

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

$WP_REST_Font_Faces_Controller = new WP_REST_Font_Faces_Controller();
$WP_REST_Font_Faces_Controller->get_items( $request );
$request(WP_REST_Request) (обязательный)
Full details about the request.

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

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

Код WP_REST_Font_Faces_Controller::get_items() WP 6.7.1

public function get_items( $request ) {
	$font_family = $this->get_parent_font_family_post( $request['font_family_id'] );
	if ( is_wp_error( $font_family ) ) {
		return $font_family;
	}

	return parent::get_items( $request );
}