PluginProbe ʕ •ᴥ•ʔ
Post Views Counter / 1.7.6
Post Views Counter v1.7.6
1.7.13 1.7.12 1.7.11 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 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 1.2.0 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.2 1.3.2.1 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.7.0 1.7.1 1.7.10 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9
post-views-counter / blocks / most-viewed-posts / block.json
post-views-counter / blocks / most-viewed-posts Last commit date
block.json 5 months ago index.asset.php 5 months ago index.js 5 months ago
block.json
69 lines
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "post-views-counter/most-viewed-posts",
5 "version": "1.0.0",
6 "title": "Most Viewed Posts",
7 "category": "post-views-counter",
8 "icon": "list-view",
9 "description": "Displays a list of the most viewed posts.",
10 "example": {},
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Most Viewed Posts"
15 },
16 "postTypes": {
17 "type": "object",
18 "default": {
19 "post": true
20 }
21 },
22 "period": {
23 "type": "string",
24 "default": "total"
25 },
26 "numberOfPosts": {
27 "type": "integer",
28 "default": 5
29 },
30 "noPostsMessage": {
31 "type": "string",
32 "default": "No most viewed posts found."
33 },
34 "order": {
35 "type": "string",
36 "default": "desc"
37 },
38 "listType": {
39 "type": "string",
40 "default": "unordered"
41 },
42 "displayPostViews": {
43 "type": "boolean",
44 "default": false
45 },
46 "displayPostExcerpt": {
47 "type": "boolean",
48 "default": false
49 },
50 "displayPostAuthor": {
51 "type": "boolean",
52 "default": false
53 },
54 "displayPostThumbnail": {
55 "type": "boolean",
56 "default": false
57 },
58 "thumbnailSize": {
59 "type": "string",
60 "default": "thumbnail"
61 }
62 },
63 "supports": {
64 "html": false
65 },
66 "textdomain": "post-views-counter",
67 "editorScript": "file:./index.js"
68 }
69