| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "shortcode-redirect/redirect", |
| 5 |
"title": "Redirect", |
| 6 |
"category": "widgets", |
| 7 |
"icon": "external", |
| 8 |
"description": "Redirect visitors to another URL after an optional delay.", |
| 9 |
"keywords": ["redirect", "url", "shortcode"], |
| 10 |
"textdomain": "shortcode-redirect", |
| 11 |
"attributes": { |
| 12 |
"url": { "type": "string", "default": "" }, |
| 13 |
"sec": { "type": "number", "default": 0 }, |
| 14 |
"showMessage": { "type": "boolean", "default": true } |
| 15 |
}, |
| 16 |
"supports": { |
| 17 |
"html": false, |
| 18 |
"align": false, |
| 19 |
"customClassName": false, |
| 20 |
"reusable": true |
| 21 |
}, |
| 22 |
"editorScript": "file:./index.js", |
| 23 |
"editorStyle": "file:./editor.css" |
| 24 |
} |
| 25 |
|