Skip to content

Instantly share code, notes, and snippets.

@Shininglow
Created August 13, 2019 15:15
Show Gist options
  • Save Shininglow/0ae9f47c83e664c0463a5b5718cd5ff8 to your computer and use it in GitHub Desktop.
Save Shininglow/0ae9f47c83e664c0463a5b5718cd5ff8 to your computer and use it in GitHub Desktop.
For a new Gutenberg block
<?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