PluginProbe
Gutenberg / 23.6.0
Gutenberg v23.6.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / latest-posts / block.json

block.json in Gutenberg 23.6.0, at build/scripts/block-library/latest-posts/block.json

133 lines 2.5 KB
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": "core/latest-posts",
5 "title": "Latest Posts",
6 "category": "widgets",
7 "description": "Display a list of your most recent posts.",
8 "keywords": [ "recent posts" ],
9 "textdomain": "default",
10 "attributes": {
11 "categories": {
12 "type": "array",
13 "items": {
14 "type": "object"
15 }
16 },
17 "selectedAuthor": {
18 "type": "number"
19 },
20 "postsToShow": {
21 "type": "number",
22 "default": 5
23 },
24 "displayPostContent": {
25 "type": "boolean",
26 "default": false
27 },
28 "displayPostContentRadio": {
29 "type": "string",
30 "default": "excerpt"
31 },
32 "excerptLength": {
33 "type": "number",
34 "default": 55
35 },
36 "displayAuthor": {
37 "type": "boolean",
38 "default": false
39 },
40 "displayPostDate": {
41 "type": "boolean",
42 "default": false
43 },
44 "order": {
45 "type": "string",
46 "default": "desc"
47 },
48 "orderBy": {
49 "type": "string",
50 "default": "date"
51 },
52 "displayFeaturedImage": {
53 "type": "boolean",
54 "default": false
55 },
56 "featuredImageAlign": {
57 "type": "string",
58 "enum": [ "left", "center", "right" ]
59 },
60 "featuredImageSizeSlug": {
61 "type": "string",
62 "default": "thumbnail"
63 },
64 "featuredImageSizeWidth": {
65 "type": "number",
66 "default": null
67 },
68 "featuredImageSizeHeight": {
69 "type": "number",
70 "default": null
71 },
72 "addLinkToFeaturedImage": {
73 "type": "boolean",
74 "default": false
75 }
76 },
77 "supports": {
78 "anchor": true,
79 "align": true,
80 "html": false,
81 "layout": true,
82 "color": {
83 "gradients": true,
84 "link": true,
85 "__experimentalDefaultControls": {
86 "background": true,
87 "text": true,
88 "link": true
89 }
90 },
91 "spacing": {
92 "margin": true,
93 "padding": true,
94 "blockGap": {
95 "__experimentalDefault": "1.25em"
96 },
97 "__experimentalDefaultControls": {
98 "blockGap": true
99 }
100 },
101 "typography": {
102 "fontSize": true,
103 "lineHeight": true,
104 "__experimentalFontFamily": true,
105 "__experimentalFontWeight": true,
106 "__experimentalFontStyle": true,
107 "__experimentalTextTransform": true,
108 "__experimentalTextDecoration": true,
109 "__experimentalLetterSpacing": true,
110 "__experimentalDefaultControls": {
111 "fontSize": true
112 }
113 },
114 "__experimentalBorder": {
115 "radius": true,
116 "color": true,
117 "width": true,
118 "style": true,
119 "__experimentalDefaultControls": {
120 "radius": true,
121 "color": true,
122 "width": true,
123 "style": true
124 }
125 },
126 "interactivity": {
127 "clientNavigation": true
128 }
129 },
130 "editorStyle": "wp-block-latest-posts-editor",
131 "style": "wp-block-latest-posts"
132 }
133