Schema
The schema defines all the fields that exist within a template_part record. Any response from these endpoints can be expected to contain the fields below unless the `_filter` query parameter is used or the schema field only appears in a specific context.
id
|
ID of template.
JSON data type: string Read only Context: |
slug
|
Unique slug identifying the template.
JSON data type: string Context: |
theme
|
Theme identifier for the template.
JSON data type: string Context: |
type
|
Type of template.
JSON data type: string Context: |
source
|
Source of template
JSON data type: string Read only Context: |
origin
|
Source of a customized template
JSON data type: string Read only Context: |
content
|
Content of template.
JSON data type: object or string Context: |
title
|
Title of template.
JSON data type: object or string Context: |
description
|
Description of template.
JSON data type: string Context: |
status
|
Status of template.
JSON data type: string Context: One of: |
wp_id
|
Post ID.
JSON data type: integer Read only Context: |
has_theme_file
|
Theme file exists.
JSON data type: bool Read only Context: |
author
|
The ID for the author of the template.
JSON data type: integer Context: |
modified
|
The date the template was last modified, in the site's timezone.
JSON data type: string, Read only Context: |
area
|
Where the template part is intended for use (header, footer, etc.)
JSON data type: string Context: |
Retrieve a Template_Part
Definition & Example Request
GET /wp/v2/template-parts
Query this endpoint to retrieve a specific template_part record.
$ curl https://example.com/wp-json/wp/v2/template-parts
Arguments
context
|
Scope under which the request is made; determines fields present in response.
Default: One of: |
wp_id
|
Limit to the specified post id. |
area
|
Limit to the specified template part area. |
post_type
|
Post type to get the templates for. |
Create a Template_Part
Arguments
slug
|
Unique slug identifying the template.
Required: 1 |
theme
|
Theme identifier for the template. |
type
|
Type of template. |
content
|
Content of template. |
title
|
Title of template. |
description
|
Description of template. |
status
|
Status of template.
Default: One of: |
author
|
The ID for the author of the template. |
area
|
Where the template part is intended for use (header, footer, etc.) |
Definition
POST /wp/v2/template-parts
Retrieve a Template_Part
Definition & Example Request
GET /wp/v2/template-parts/<id>?)[\/\w%-]+)
Query this endpoint to retrieve a specific template_part record.
$ curl https://example.com/wp-json/wp/v2/template-parts/<id>?)[\/\w%-]+)
Arguments
id
|
The id of a template |
context
|
Scope under which the request is made; determines fields present in response.
Default: One of: |
Update a Template_Part
Arguments
id
|
The id of a template |
slug
|
Unique slug identifying the template. |
theme
|
Theme identifier for the template. |
type
|
Type of template. |
content
|
Content of template. |
title
|
Title of template. |
description
|
Description of template. |
status
|
Status of template. One of: publish , future , draft , pending , private
|
author
|
The ID for the author of the template. |
area
|
Where the template part is intended for use (header, footer, etc.) |
Delete a Template_Part
Arguments
id
|
The id of a template |
force
|
Whether to bypass Trash and force deletion. |
Definition
DELETE /wp/v2/template-parts/<id>?)[\/\w%-]+)
Example Request
$ curl -X DELETE https://example.com/wp-json/wp/v2/template-parts/<id>?)[\/\w%-]+)