The Tag class.

Since

3.0.0

Type Parameters

  • T = PostTagDataType[] | PostTagDataType

Hierarchy (view full)

Constructors

  • Type Parameters

    • T = default | default[]

    Parameters

    • Optional endpoint: string

    Returns Tag<T>

Properties

endpoint: string = 'posts'
_instance: WPJSSingleton

Methods

  • Fetch a single tag.

    Returns Promise<T | T[]>

    Since

    3.0.0

    Example

    import { Tag } from '@quickdevelopment/wp-js';

    const tag = new Tag();

    tag.fetch().then((data) => {
    console.log(data);
    })
  • 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