WP_REST_Font_Faces_Controller::delete_item()publicWP 6.5.0

Deletes a single font face.

Method of the class: WP_REST_Font_Faces_Controller{}

No Hooks.

Return

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

Usage

$WP_REST_Font_Faces_Controller = new WP_REST_Font_Faces_Controller();
$WP_REST_Font_Faces_Controller->delete_item( $request );
$request(WP_REST_Request) (required)
Full details about the request.

Changelog

Since 6.5.0 Introduced.

WP_REST_Font_Faces_Controller::delete_item() code WP 6.6.2

public function delete_item( $request ) {
	$post = $this->get_post( $request['id'] );
	if ( is_wp_error( $post ) ) {
		return $post;
	}

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

	if ( (int) $font_family->ID !== (int) $post->post_parent ) {
		return new WP_Error(
			'rest_font_face_parent_id_mismatch',
			/* translators: %d: A post id. */
			sprintf( __( 'The font face does not belong to the specified font family with id of "%d".' ), $font_family->ID ),
			array( 'status' => 404 )
		);
	}

	$force = isset( $request['force'] ) ? (bool) $request['force'] : false;

	// We don't support trashing for font faces.
	if ( ! $force ) {
		return new WP_Error(
			'rest_trash_not_supported',
			/* translators: %s: force=true */
			sprintf( __( 'Font faces do not support trashing. Set "%s" to delete.' ), 'force=true' ),
			array( 'status' => 501 )
		);
	}

	return parent::delete_item( $request );
}