Skip to content

Instantly share code, notes, and snippets.

@dgwyer
Created November 3, 2018 12:38
Show Gist options
  • Save dgwyer/fad8d4e5edfcd91cafc44b6a2b4a79d4 to your computer and use it in GitHub Desktop.
Save dgwyer/fad8d4e5edfcd91cafc44b6a2b4a79d4 to your computer and use it in GitHub Desktop.
<?php
function add_gb_script() {
wp_enqueue_script(
'gb-script',
get_stylesheet_directory_uri() . '/gb_script.js',
array( 'wp-i18n', 'wp-element', 'wp-blocks', 'wp-components', 'wp-api' )
);
}
add_action( 'enqueue_block_editor_assets', 'add_gb_script' );
wp.blocks.registerBlockStyle( 'core/button', { name: 'custom-btn1', label: 'Custom 1', isDefault: true });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment