Skip to content

Instantly share code, notes, and snippets.

@richtabor
Created May 12, 2020 19:57
Show Gist options
  • Save richtabor/3fb7c6f9a79427e4e5da5843e1d5080b to your computer and use it in GitHub Desktop.
Save richtabor/3fb7c6f9a79427e4e5da5843e1d5080b to your computer and use it in GitHub Desktop.
function block_variation_example_enqueue() {
wp_enqueue_script(
'block-variation-example-script',
plugins_url( 'index.js', __FILE__ ),
array( 'wp-blocks', 'wp-dom-ready', 'wp-edit-post' ),
filemtime( plugin_dir_path( __FILE__ ) . '/block-variation-example.js' )
);
}
add_action( 'enqueue_block_editor_assets', 'block_variation_example_enqueue' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment