block.json
33 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 | "keywords": [ "views", "counter", "analytics", "display" ], |
| 11 | "example": { |
| 12 | "attributes": { |
| 13 | "postID": 0, |
| 14 | "period": "total" |
| 15 | } |
| 16 | }, |
| 17 | "attributes": { |
| 18 | "postID": { |
| 19 | "type": "integer", |
| 20 | "default": 0 |
| 21 | }, |
| 22 | "period": { |
| 23 | "type": "string", |
| 24 | "default": "total" |
| 25 | } |
| 26 | }, |
| 27 | "supports": { |
| 28 | "html": false |
| 29 | }, |
| 30 | "textdomain": "post-views-counter", |
| 31 | "editorScript": "file:./index.js" |
| 32 | } |
| 33 |