The Media class.

Since

3.0.0

Type Parameters

Hierarchy (view full)

Constructors

Properties

endpoint: string = 'posts'
_instance: WPJSSingleton

Methods

  • Fetch a single media.

    Returns Promise<T | T[]>

    Since

    3.0.0

    Example

    import {Media} from "@quickdevelopment/wp-js";

    const media = new Media('media/1');

    media.fetch().then((media) => {
    console.log(media)
    })
  • Protected

    Fetch multiple objects from the endpoint.

    Returns Promise<T[]>

    Since

    2.0.0

  • Protected

    Get data about the current class.

    Type Parameters

    • T

    Returns Promise<T>

    Since

    1.0.0

  • Protected

    Get the search parameters.

    Returns URLSearchParams

  • Set search parameters for the request.

    Parameters

    • params: Record<string, string | number>

      Object containing search parameters.

    Returns this

    Since

    2.0.0

Generated using TypeDoc