block.json
27 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "post-views-counter/post-views", |
| 5 | "version": "1.0.0", |
| 6 | "title": "Post Views", |
| 7 | "category": "post-views-counter", |
| 8 | "icon": "list-view", |
| 9 | "description": "Display post views for a given post.", |
| 10 | "example": {}, |
| 11 | "attributes": { |
| 12 | "postID": { |
| 13 | "type": "integer", |
| 14 | "default": 0 |
| 15 | }, |
| 16 | "period": { |
| 17 | "type": "string", |
| 18 | "default": "total" |
| 19 | } |
| 20 | }, |
| 21 | "supports": { |
| 22 | "html": false |
| 23 | }, |
| 24 | "textdomain": "post-views-counter", |
| 25 | "editorScript": "file:./index.js" |
| 26 | } |
| 27 |