PluginProbe
Shortcode Redirect / trunk
Shortcode Redirect vtrunk
1.1.3 1.1.2 trunk 1.0.00 1.0.01 1.0.02 1.0.03 1.0.4 1.1.0 1.1.1
shortcode-redirect / block / block.json

block.json in Shortcode Redirect trunk, at block/block.json

25 lines 715 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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