wp_enqueue_editor_format_library_assets

The timeline below displays how wordpress function wp_enqueue_editor_format_library_assets has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.8

/**
 * Enqueues the assets required for the format library within the block editor.
 *
 * @since 5.8.0
 */
function wp_enqueue_editor_format_library_assets()
{
    wp_enqueue_script('wp-format-library');
    wp_enqueue_style('wp-format-library');
}