Interface CreateBlogData

Data for creating a blog

interface CreateBlogData {
    comments_enabled?: boolean;
    feedburner_url?: string;
    moderated?: boolean;
    tags?: string[];
    template_suffix?: string;
    title: string;
}

Properties

comments_enabled?: boolean

Comments setting

feedburner_url?: string

Feedburner URL

moderated?: boolean

Moderation setting

tags?: string[]

Tags list

template_suffix?: string

Template suffix

title: string

Blog title