PluginProbe
Gutenberg / 10.1.0
Gutenberg v10.1.0
24.0.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 All 403 releases
gutenberg / build / block-library / blocks / latest-posts / block.json

block.json in Gutenberg 10.1.0, at build/block-library/blocks/latest-posts/block.json

91 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 2,
3 "name": "core/latest-posts",
4 "category": "widgets",
5 "attributes": {
6 "categories": {
7 "type": "array",
8 "items": {
9 "type": "object"
10 }
11 },
12 "selectedAuthor": {
13 "type": "number"
14 },
15 "postsToShow": {
16 "type": "number",
17 "default": 5
18 },
19 "displayPostContent": {
20 "type": "boolean",
21 "default": false
22 },
23 "displayPostContentRadio": {
24 "type": "string",
25 "default": "excerpt"
26 },
27 "excerptLength": {
28 "type": "number",
29 "default": 55
30 },
31 "displayAuthor": {
32 "type": "boolean",
33 "default": false
34 },
35 "displayPostDate": {
36 "type": "boolean",
37 "default": false
38 },
39 "postLayout": {
40 "type": "string",
41 "default": "list"
42 },
43 "columns": {
44 "type": "number",
45 "default": 3
46 },
47 "order": {
48 "type": "string",
49 "default": "desc"
50 },
51 "orderBy": {
52 "type": "string",
53 "default": "date"
54 },
55 "displayFeaturedImage": {
56 "type": "boolean",
57 "default": false
58 },
59 "featuredImageAlign": {
60 "type": "string",
61 "enum": [
62 "left",
63 "center",
64 "right"
65 ]
66 },
67 "featuredImageSizeSlug": {
68 "type": "string",
69 "default": "thumbnail"
70 },
71 "featuredImageSizeWidth": {
72 "type": "number",
73 "default": null
74 },
75 "featuredImageSizeHeight": {
76 "type": "number",
77 "default": null
78 },
79 "addLinkToFeaturedImage": {
80 "type": "boolean",
81 "default": false
82 }
83 },
84 "supports": {
85 "align": true,
86 "html": false
87 },
88 "editorStyle": "wp-block-latest-posts-editor",
89 "style": "wp-block-latest-posts"
90 }
91