Settings Edit

Schema Schema

The schema defines all the fields that exist for a settings object.

title

string
Site title.

Context:

description

string
Site tagline.

Context:

timezone

string
A city in the same timezone as you.

Context:

date_format

string
A date format for all date strings.

Context:

time_format

string
A time format for all time strings.

Context:

start_of_week

integer
A day number of the week that the week should start on.

Context:

language

string
WordPress locale code.

Context:

use_smilies

boolean
Convert emoticons like :-) and :-P to graphics on display.

Context:

default_category

integer
Default post category.

Context:

default_post_format

string
Default post format.

Context:

posts_per_page

integer
Blog pages show at most.

Context:

default_ping_status

string
Allow link notifications from other blogs (pingbacks and trackbacks) on new articles.

Context:

One of: open, closed

default_comment_status

string
Allow people to post comments on new articles.

Context:

One of: open, closed

Example Request Example Request

$ curl -X OPTIONS -i http://demo.wp-api.org/wp-json/wp/v2/settings

Top ↑

List Settings List Settings

There are no arguments for this endpoint.

Top ↑

Definition Definition

GET /wp/v2/settings

Example Request Example Request

$ curl http://demo.wp-api.org/wp-json/wp/v2/settings

Top ↑

Update a Settings Update a Settings

Top ↑

Arguments Arguments

title Site title.
description Site tagline.
timezone A city in the same timezone as you.
date_format A date format for all date strings.
time_format A time format for all time strings.
start_of_week A day number of the week that the week should start on.
language WordPress locale code.
use_smilies Convert emoticons like :-) and :-P to graphics on display.
default_category Default post category.
default_post_format Default post format.
posts_per_page Blog pages show at most.
default_ping_status Allow link notifications from other blogs (pingbacks and trackbacks) on new articles.
One of: open, closed
default_comment_status Allow people to post comments on new articles.
One of: open, closed

Top ↑

Definition Definition

POST /wp/v2/settings

Example Request Example Request