mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
In the [documentation for WPDefinedAsset definition](https://developer.wordpress.org/block-editor/reference-guides/block-api/block-metadata/#wpdefinedasset) for block metadata there is a note about the handle. That was missing in WordPress core. Props gziolo, jsnajdr, youknowriad. Fixes #60485. git-svn-id: https://develop.svn.wordpress.org/trunk@57590 602fd350-edb4-49c9-b593-d223f7449a82
8 lines
124 B
PHP
8 lines
124 B
PHP
<?php
|
|
|
|
return array(
|
|
'handle' => 'tests-my-shared-script',
|
|
'dependencies' => array(),
|
|
'version' => 'test',
|
|
);
|