Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. function kenzap_editor_assets() {
  2.  
  3. // this plugin's distribution folder
  4. $pathToPlugin = plugins_url( 'dist/', dirname( __FILE__ ) );
  5.  
  6. // dependencies
  7. wp_register_script( 'circle', $pathToPlugin . 'circle/circle-progress.min.js', array('jquery'));
  8. wp_enqueue_script( 'circle' );
  9. wp_enqueue_script( 'kenzap/stats-3', plugins_url( 'stats-3/script.js', __FILE__ ), array('jquery') );
  10.  
  11. // Scripts.
  12. wp_enqueue_script( 'kenzap-stats', plugins_url( 'dist/blocks.build.js', dirname( __FILE__ ) ), array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-components', 'wp-editor' ), filemtime( plugin_dir_path( __DIR__ ) . 'dist/blocks.build.js' ), true);
  13.  
  14. }
  15. add_action( 'enqueue_block_editor_assets', 'kenzap_editor_assets' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement