PluginProbe
Display Remote Posts Block / trunk
Display Remote Posts Block vtrunk
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4
display-remote-posts-block / block.json

block.json in Display Remote Posts Block trunk, at block.json

58 lines 1.1 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": "display-remote-posts-block/display-remote-posts",
5 "version": "1.1.3",
6 "title": "Display Remote Posts",
7 "category": "embed",
8 "parent": [ "core/group" ],
9 "icon": "admin-post",
10 "description": "Block to display recent posts from a WordPress or Blogger blog",
11 "keywords": [
12 "blog",
13 "blogger",
14 "jetpack"
15 ],
16 "textdomain": "display-remote-posts-block",
17 "attributes": {
18 "url": {
19 "type": "string",
20 "default": ""
21 },
22 "title": {
23 "type": "boolean",
24 "default": true
25 },
26 "post_date": {
27 "type": "boolean",
28 "default": false
29 },
30 "posts": {
31 "type": "number",
32 "default": 1
33 },
34 "offset": {
35 "type": "number",
36 "default": 0
37 },
38 "featured_images": {
39 "type": "boolean",
40 "default": true
41 },
42 "excerpts": {
43 "type": "boolean",
44 "default": true
45 },
46 "target_blank": {
47 "type": "boolean",
48 "default": false
49 },
50 "max_width": {
51 "type": "number",
52 "default": 0
53 }
54 },
55 "script": "file:./build/index.js",
56 "style": ""
57 }
58