| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "core/read-more", |
| 5 |
"title": "Read More", |
| 6 |
"category": "theme", |
| 7 |
"description": "Displays the link of a post, page, or any other content-type.", |
| 8 |
"textdomain": "default", |
| 9 |
"attributes": { |
| 10 |
"content": { |
| 11 |
"type": "string", |
| 12 |
"role": "content" |
| 13 |
}, |
| 14 |
"linkTarget": { |
| 15 |
"type": "string", |
| 16 |
"default": "_self" |
| 17 |
} |
| 18 |
}, |
| 19 |
"usesContext": [ "postId" ], |
| 20 |
"supports": { |
| 21 |
"anchor": true, |
| 22 |
"html": false, |
| 23 |
"color": { |
| 24 |
"gradients": true, |
| 25 |
"text": true |
| 26 |
}, |
| 27 |
"typography": { |
| 28 |
"fontSize": true, |
| 29 |
"lineHeight": true, |
| 30 |
"__experimentalFontFamily": true, |
| 31 |
"__experimentalFontWeight": true, |
| 32 |
"__experimentalFontStyle": true, |
| 33 |
"__experimentalTextTransform": true, |
| 34 |
"__experimentalLetterSpacing": true, |
| 35 |
"__experimentalTextDecoration": true, |
| 36 |
"__experimentalDefaultControls": { |
| 37 |
"fontSize": true, |
| 38 |
"textDecoration": true |
| 39 |
} |
| 40 |
}, |
| 41 |
"spacing": { |
| 42 |
"margin": [ "top", "bottom" ], |
| 43 |
"padding": true, |
| 44 |
"__experimentalDefaultControls": { |
| 45 |
"padding": true |
| 46 |
} |
| 47 |
}, |
| 48 |
"__experimentalBorder": { |
| 49 |
"color": true, |
| 50 |
"radius": true, |
| 51 |
"width": true, |
| 52 |
"__experimentalDefaultControls": { |
| 53 |
"width": true |
| 54 |
} |
| 55 |
}, |
| 56 |
"interactivity": { |
| 57 |
"clientNavigation": true |
| 58 |
} |
| 59 |
}, |
| 60 |
"style": "wp-block-read-more" |
| 61 |
} |
| 62 |
|