block.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/site-title",
  5. "title": "Site Title",
  6. "category": "theme",
  7. "description": "Displays the name of this site. Update the block, and the changes apply everywhere it’s used. This will also appear in the browser title bar and in search results.",
  8. "textdomain": "default",
  9. "attributes": {
  10. "level": {
  11. "type": "number",
  12. "default": 1
  13. },
  14. "textAlign": {
  15. "type": "string"
  16. },
  17. "isLink": {
  18. "type": "boolean",
  19. "default": true
  20. },
  21. "linkTarget": {
  22. "type": "string",
  23. "default": "_self"
  24. }
  25. },
  26. "example": {
  27. "viewportWidth": 500
  28. },
  29. "supports": {
  30. "align": [ "wide", "full" ],
  31. "html": false,
  32. "color": {
  33. "gradients": true,
  34. "link": true,
  35. "__experimentalDefaultControls": {
  36. "background": true,
  37. "text": true,
  38. "link": true
  39. }
  40. },
  41. "spacing": {
  42. "padding": true,
  43. "margin": true
  44. },
  45. "typography": {
  46. "fontSize": true,
  47. "lineHeight": true,
  48. "__experimentalFontFamily": true,
  49. "__experimentalTextTransform": true,
  50. "__experimentalFontStyle": true,
  51. "__experimentalFontWeight": true,
  52. "__experimentalLetterSpacing": true,
  53. "__experimentalDefaultControls": {
  54. "fontSize": true,
  55. "lineHeight": true,
  56. "fontAppearance": true,
  57. "letterSpacing": true,
  58. "textTransform": true
  59. }
  60. }
  61. },
  62. "editorStyle": "wp-block-site-title-editor"
  63. }