wp_enqueue_editor_block_directory_assets() WordPress Function
The wp_enqueue_editor_block_directory_assets() function is used to enqueue assets for the editor block directory. This function should be called after the editor has been initialized.
wp_enqueue_editor_block_directory_assets() #
Enqueues the assets required for the block directory within the block editor.
Source
File: wp-includes/script-loader.php
function wp_enqueue_editor_block_directory_assets() { wp_enqueue_script( 'wp-block-directory' ); wp_enqueue_style( 'wp-block-directory' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |