-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.json
37 lines (37 loc) · 1.28 KB
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"version": "1.3.5",
"title": "Photos page",
"description": "Change the photos page to use a \"flexible grid\" or \"masonry\" style.",
"includes": ["/css/photos-grid.css"],
"fields": [
{
"field": "params.photos_grid_style",
"label": "Grid style \"grid\" or \"masonry\"",
"placeholder": "Enter the grid style",
"type": "string"
},
{
"field": "params.show_all_photos",
"label": "Include all photos in multi-photo posts, not just first photo.",
"type": "boolean"
},
{
"field": "params.included_categories",
"label": "Optionally: Only include photos from posts with the following categories (leave empty to include all posts). Separate categories with comma (\",\") to include multiple categories.",
"placeholder": "Enter category names separated by comma",
"type": "string"
},
{
"field": "params.masonry_columns_large_screens",
"label": "Set the number of columns used in the masonry layout for large screens",
"placeholder": "Default: 4",
"type": "integer"
},
{
"field": "params.masonry_columns_small_screens",
"label": "Set the number of columns used in the masonry layout for small screens",
"placeholder": "Default: 2",
"type": "integer"
}
]
}