16
|
1 |
{ |
19
|
2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
18
|
3 |
"apiVersion": 2, |
16
|
4 |
"name": "core/latest-posts", |
18
|
5 |
"title": "Latest Posts", |
16
|
6 |
"category": "widgets", |
18
|
7 |
"description": "Display a list of your most recent posts.", |
|
8 |
"keywords": [ "recent posts" ], |
|
9 |
"textdomain": "default", |
16
|
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 |
"postLayout": { |
|
45 |
"type": "string", |
|
46 |
"default": "list" |
|
47 |
}, |
|
48 |
"columns": { |
|
49 |
"type": "number", |
|
50 |
"default": 3 |
|
51 |
}, |
|
52 |
"order": { |
|
53 |
"type": "string", |
|
54 |
"default": "desc" |
|
55 |
}, |
|
56 |
"orderBy": { |
|
57 |
"type": "string", |
|
58 |
"default": "date" |
|
59 |
}, |
|
60 |
"displayFeaturedImage": { |
|
61 |
"type": "boolean", |
|
62 |
"default": false |
|
63 |
}, |
|
64 |
"featuredImageAlign": { |
|
65 |
"type": "string", |
18
|
66 |
"enum": [ "left", "center", "right" ] |
16
|
67 |
}, |
|
68 |
"featuredImageSizeSlug": { |
|
69 |
"type": "string", |
|
70 |
"default": "thumbnail" |
|
71 |
}, |
|
72 |
"featuredImageSizeWidth": { |
|
73 |
"type": "number", |
|
74 |
"default": null |
|
75 |
}, |
|
76 |
"featuredImageSizeHeight": { |
|
77 |
"type": "number", |
|
78 |
"default": null |
18
|
79 |
}, |
|
80 |
"addLinkToFeaturedImage": { |
|
81 |
"type": "boolean", |
|
82 |
"default": false |
16
|
83 |
} |
|
84 |
}, |
|
85 |
"supports": { |
|
86 |
"align": true, |
|
87 |
"html": false |
18
|
88 |
}, |
|
89 |
"editorStyle": "wp-block-latest-posts-editor", |
|
90 |
"style": "wp-block-latest-posts" |
16
|
91 |
} |