POST /sites/$site/widgets/widget:$id
Update a widget on a site by its ID.
Resource Information
Method | POST |
---|---|
URL | https://public-api.wordpress.com/rest/v1.1/sites/$site/widgets/widget:$id |
Requires authentication? | Yes |
Method Parameters
Parameter | Type | Description |
---|---|---|
$site | (string) | Site ID or domain. |
$id | (string) | Widget ID |
Query Parameters
Parameter | Type | Description |
---|---|---|
context | (string) |
|
http_envelope | (bool) |
|
pretty | (bool) |
|
meta | (string) | Optional. Loads data from the endpoints found in the 'meta' part of the response. Comma-separated list. Example: meta=site,likes |
fields | (string) | Optional. Returns specified fields only. Comma-separated list. Example: fields=ID,title |
callback | (string) | An optional JSONP callback function. |
Request Parameters
Parameter | Type | Description |
---|---|---|
sidebar | (string) | Optional. The ID of the sidebar where this widget will be active. |
position | (int) | Optional. The new position of the widget in the sidebar. |
settings | (object) | Optional. The settings to merge into the widget. |
Response Parameters
Parameter | Type | Description |
---|---|---|
id | (string) | The ID of the widget. |
sidebar | (string) | The ID of the sidebar where this widget will be active. |
position | (int) | The position of the widget in the sidebar. |
settings | (array) | The settings for the widget. |
Resource Errors
This endpoint does not return any errors.
Example
curl \ -H 'authorization: Bearer YOUR_API_TOKEN' \ --data-urlencode 'sidebar=sidebar-2' \ --data-urlencode 'position=0' \ --data-urlencode 'settings=Array' \ 'https://public-api.wordpress.com/rest/v1.1/sites/12345678/widgets/widget:text-3'
<?php $options = array ( 'http' => array ( 'ignore_errors' => true, 'method' => 'POST', 'header' => array ( 0 => 'authorization: Bearer YOUR_API_TOKEN', 1 => 'Content-Type: application/x-www-form-urlencoded', ), 'content' => http_build_query( array ( 'sidebar' => 'sidebar-2', 'position' => '0', 'settings' => array ( 'title' => 'hello world', ), )), ), ); $context = stream_context_create( $options ); $response = file_get_contents( 'https://public-api.wordpress.com/rest/v1.1/sites/12345678/widgets/widget:text-3', false, $context ); $response = json_decode( $response ); ?>