block.json 550 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/archives",
  5. "title": "Archives",
  6. "category": "widgets",
  7. "description": "Display a date archive of your posts.",
  8. "textdomain": "default",
  9. "attributes": {
  10. "displayAsDropdown": {
  11. "type": "boolean",
  12. "default": false
  13. },
  14. "showPostCounts": {
  15. "type": "boolean",
  16. "default": false
  17. },
  18. "type": {
  19. "type": "string",
  20. "default": "monthly"
  21. }
  22. },
  23. "supports": {
  24. "align": true,
  25. "html": false
  26. },
  27. "editorStyle": "wp-block-archives-editor"
  28. }