| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "core/social-link", |
| 5 |
"title": "Social Icon", |
| 6 |
"category": "widgets", |
| 7 |
"parent": [ "core/social-links" ], |
| 8 |
"description": "Display an icon linking to a social profile or site.", |
| 9 |
"textdomain": "default", |
| 10 |
"attributes": { |
| 11 |
"url": { |
| 12 |
"type": "string", |
| 13 |
"role": "content" |
| 14 |
}, |
| 15 |
"service": { |
| 16 |
"type": "string" |
| 17 |
}, |
| 18 |
"label": { |
| 19 |
"type": "string", |
| 20 |
"role": "content" |
| 21 |
}, |
| 22 |
"rel": { |
| 23 |
"type": "string" |
| 24 |
} |
| 25 |
}, |
| 26 |
"usesContext": [ |
| 27 |
"openInNewTab", |
| 28 |
"showLabels", |
| 29 |
"iconColor", |
| 30 |
"iconColorValue", |
| 31 |
"iconBackgroundColor", |
| 32 |
"iconBackgroundColorValue" |
| 33 |
], |
| 34 |
"supports": { |
| 35 |
"anchor": true, |
| 36 |
"reusable": false, |
| 37 |
"html": false, |
| 38 |
"interactivity": { |
| 39 |
"clientNavigation": true |
| 40 |
} |
| 41 |
}, |
| 42 |
"editorStyle": "wp-block-social-link-editor" |
| 43 |
} |
| 44 |
|