wordpress_get_media
Retrieve media files from WordPress library with filtering options to organize and access images, documents, and other file types for content management.
Instructions
Get media library files with filtering by type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| perPage | Yes | ||
| page | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"type": "number"
},
"perPage": {
"type": "number"
}
},
"required": [
"perPage",
"page"
],
"type": "object"
}