get-posts-by-category
Fetch posts from hafiz.blog by specifying a category slug, enabling targeted content retrieval for WordPress.com users. Ideal for organizing and accessing categorized blog posts.
Instructions
Get posts from a specific category on hafiz.blog (WordPress.com)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categorySlug | Yes | Slug of the category (e.g., 'technology', 'life') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"categorySlug": {
"description": "Slug of the category (e.g., 'technology', 'life')",
"type": "string"
}
},
"required": [
"categorySlug"
],
"type": "object"
}