Created
November 3, 2018 12:38
-
-
Save dgwyer/fad8d4e5edfcd91cafc44b6a2b4a79d4 to your computer and use it in GitHub Desktop.
This file contains 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 | |
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' ); |
This file contains 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
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