Skip to content

Instantly share code, notes, and snippets.

@Tepluypled
Last active November 27, 2019 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tepluypled/4511e676bdbd88be674631e100998e1f to your computer and use it in GitHub Desktop.
Save Tepluypled/4511e676bdbd88be674631e100998e1f to your computer and use it in GitHub Desktop.
Part2
<?php
function loadMyBlockFiles() {
wp_enqueue_script(
'my-test-text',
plugin_dir_url(__FILE__). 'custom.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