The WP Term fields

TermType

interface TermType {
    acf: object[];
    id: number;
    link: string;
    name: string;
    slug: string;
    taxonomy: string;
}

Properties

acf: object[]

The acf fields. Expose fields to use custom term information in your JS app.

Tip

Expose Custom Taxonomy Types to use custom taxonomies in your JS app.

See

https://www.advancedcustomfields.com/resources/

id: number

The id.

link: string

The link.

name: string

The name.

slug: string

The slug.

taxonomy: string

The taxonomy.

Generated using TypeDoc