blocks-manifest.php 663 B

12345678910111213141516171819202122232425
  1. <?php
  2. // This file is generated. Do not modify it manually.
  3. return array(
  4. 'custom-block' => array(
  5. '$schema' => 'https://schemas.wp.org/trunk/block.json',
  6. 'apiVersion' => 3,
  7. 'name' => 'create-block/custom-block',
  8. 'version' => '0.1.0',
  9. 'title' => 'Custom Block',
  10. 'category' => 'widgets',
  11. 'icon' => 'smiley',
  12. 'description' => 'Example block scaffolded with Create Block tool.',
  13. 'example' => array(
  14. ),
  15. 'supports' => array(
  16. 'html' => false
  17. ),
  18. 'textdomain' => 'custom-block',
  19. 'editorScript' => 'file:./index.js',
  20. 'editorStyle' => 'file:./index.css',
  21. 'style' => 'file:./style-index.css',
  22. 'viewScript' => 'file:./view.js'
  23. )
  24. );