block.json 844 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/tag-cloud",
  5. "title": "Tag Cloud",
  6. "category": "widgets",
  7. "description": "A cloud of your most used tags.",
  8. "textdomain": "default",
  9. "attributes": {
  10. "numberOfTags": {
  11. "type": "number",
  12. "default": 45,
  13. "minimum": 1,
  14. "maximum": 100
  15. },
  16. "taxonomy": {
  17. "type": "string",
  18. "default": "post_tag"
  19. },
  20. "showTagCounts": {
  21. "type": "boolean",
  22. "default": false
  23. },
  24. "smallestFontSize": {
  25. "type": "string",
  26. "default": "8pt"
  27. },
  28. "largestFontSize": {
  29. "type": "string",
  30. "default": "22pt"
  31. }
  32. },
  33. "styles": [
  34. { "name": "default", "label": "Default", "isDefault": true },
  35. { "name": "outline", "label": "Outline" }
  36. ],
  37. "supports": {
  38. "html": false,
  39. "align": true
  40. },
  41. "editorStyle": "wp-block-tag-cloud-editor"
  42. }