Created
August 13, 2019 15:15
-
-
Save Shininglow/0ae9f47c83e664c0463a5b5718cd5ff8 to your computer and use it in GitHub Desktop.
For a new Gutenberg block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
*Plugin name: Extra | |
*Author: My name | |
*Version: 1.0.0 | |
*/ | |
function loadMyBlockFiles() { | |
wp_enqueue_script( | |
'my-test-text', | |
plugin_dir_url(__FILE__). 'extra.js', | |
array('wp-blocks', 'wp-i18n', 'wp-editor'), | |
true | |
); | |
} | |
add_action('enqueue_block_editor_assets', 'loadMyBlockFiles'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment