block.json
38 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "shop-press/loop-title", |
| 5 | "version": "1.0.0", |
| 6 | "title": "Loop Title", |
| 7 | "category": "sp_woo_loop", |
| 8 | |
| 9 | "description": "", |
| 10 | "supports": { |
| 11 | "html": false |
| 12 | }, |
| 13 | "textdomain": "shop-press", |
| 14 | "editorScript": "file:./index.js", |
| 15 | "render": "file:./render.php", |
| 16 | "attributes": { |
| 17 | "link_to_product": { |
| 18 | "type": "boolean" |
| 19 | }, |
| 20 | "tag": { |
| 21 | "type": "string", |
| 22 | "default": "h1" |
| 23 | }, |
| 24 | "link_target": { |
| 25 | "type": "string", |
| 26 | "default": "_self" |
| 27 | }, |
| 28 | "wrapperID": { |
| 29 | "type": "string", |
| 30 | "default": "" |
| 31 | }, |
| 32 | "styler": { |
| 33 | "type": "string", |
| 34 | "default": "{}" |
| 35 | } |
| 36 | } |
| 37 | } |
| 38 |