1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "$schema": "https://schemas.wp.org/trunk/block.json",
- "apiVersion": 2,
- "name": "core/post-template",
- "title": "Post Template",
- "category": "theme",
- "parent": [ "core/query" ],
- "description": "Contains the block elements used to render a post, like the title, date, featured image, content or excerpt, and more.",
- "textdomain": "default",
- "usesContext": [
- "queryId",
- "query",
- "queryContext",
- "displayLayout",
- "templateSlug",
- "previewPostType"
- ],
- "supports": {
- "reusable": false,
- "html": false,
- "align": true,
- "__experimentalLayout": {
- "allowEditing": false
- },
- "typography": {
- "fontSize": true,
- "lineHeight": true,
- "__experimentalFontFamily": true,
- "__experimentalFontWeight": true,
- "__experimentalFontStyle": true,
- "__experimentalTextTransform": true,
- "__experimentalTextDecoration": true,
- "__experimentalLetterSpacing": true,
- "__experimentalDefaultControls": {
- "fontSize": true
- }
- }
- },
- "style": "wp-block-post-template",
- "editorStyle": "wp-block-post-template-editor"
- }
|