block.json 657 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/comments-query-loop",
  5. "title": "Comments Query Loop",
  6. "category": "theme",
  7. "description": "An advanced block that allows displaying post comments using different visual configurations.",
  8. "textdomain": "default",
  9. "attributes": {
  10. "tagName": {
  11. "type": "string",
  12. "default": "div"
  13. }
  14. },
  15. "supports": {
  16. "align": [ "wide", "full" ],
  17. "html": false,
  18. "color": {
  19. "gradients": true,
  20. "link": true,
  21. "__experimentalDefaultControls": {
  22. "background": true,
  23. "text": true,
  24. "link": true
  25. }
  26. }
  27. },
  28. "editorStyle": "wp-block-comments-editor"
  29. }