golden hour
/home/godaofbq/dialhyperbaric.com/wp-content/plugins/code-snippets/js/types/wp
⬆️ Go Up
Upload
File/Folder
Size
Actions
Page.ts
209 B
Del
OK
Post.ts
989 B
Del
OK
PostType.ts
304 B
Del
OK
Term.ts
546 B
Del
OK
User.ts
543 B
Del
OK
Edit: Term.ts
export const TAGS_ENDPOINT = '/wp/v2/tags' export const CATEGORIES_ENDPOINT = '/wp/v2/categories' export interface Term { id: number count: number description: string link: string name: string slug: string taxonomy: Taxonomy meta: Record<string, unknown> } export type PostTag = Term export interface Category extends Term { parent: number } export type Taxonomy = 'category' | 'post_tag' | 'nav_menu' | 'link_category' | 'post_format' export type Terms = Term[] export type PostTags = PostTag[] export type Categories = Category[]
Save