do_action( ‘enqueue_block_editor_assets’ )

Fires after block assets have been enqueued for the editing interface.

Description

Call add_action on any hook before ‘admin_enqueue_scripts’.

In the function call you supply, simply use wp_enqueue_script and wp_enqueue_style to add your functionality to the block editor.

Source

do_action( 'enqueue_block_editor_assets' );

Changelog

VersionDescription
5.0.0Introduced.

User Contributed Notes

  1. Skip to note 5 content

    Using this method you can enqueue JavaScript file for the editor

    function wpdocs_enqueue_scripts() {
    
      $blockPath = '/blocks/index.js';
      
      // Enqueue the block index.js file
      wp_enqueue_script(
        'example-block', // unique handle
        get_template_directory_uri() . $blockPath,
        [ 'wp-blocks', 'wp-element', 'wp-i18n' ], // required dependencies for blocks
        filemtime( get_template_directory() . $blockPath )
      );
    
    }
    add_action( 'enqueue_block_editor_assets', 'wpdocs_enqueue_scripts' );

You must log in before being able to contribute a note or feedback.