Title: wp_enqueue_editor_format_library_assets
Published: July 20, 2021
Last modified: February 24, 2026

---

# wp_enqueue_editor_format_library_assets()

## In this article

 * [Source](https://developer.wordpress.org/reference/functions/wp_enqueue_editor_format_library_assets/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/functions/wp_enqueue_editor_format_library_assets/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/functions/wp_enqueue_editor_format_library_assets/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/functions/wp_enqueue_editor_format_library_assets/?output_format=md#wp--skip-link--target)

Enqueues the assets required for the format library within the block editor.

## 󠀁[Source](https://developer.wordpress.org/reference/functions/wp_enqueue_editor_format_library_assets/?output_format=md#source)󠁿

    ```php
    function wp_enqueue_editor_format_library_assets() {
    	wp_enqueue_script( 'wp-format-library' );
    	wp_enqueue_style( 'wp-format-library' );
    }
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/script-loader.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/6.9.4/src/wp-includes/script-loader.php#L2859)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/6.9.4/src/wp-includes/script-loader.php#L2859-L2862)

## 󠀁[Related](https://developer.wordpress.org/reference/functions/wp_enqueue_editor_format_library_assets/?output_format=md#related)󠁿

| Uses | Description | 
| [wp_enqueue_script()](https://developer.wordpress.org/reference/functions/wp_enqueue_script/)`wp-includes/functions.wp-scripts.php` |

Enqueues a script.

  | 
| [wp_enqueue_style()](https://developer.wordpress.org/reference/functions/wp_enqueue_style/)`wp-includes/functions.wp-styles.php` |

Enqueues a CSS stylesheet.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/functions/wp_enqueue_editor_format_library_assets/?output_format=md#changelog)󠁿

| Version | Description | 
| [5.8.0](https://developer.wordpress.org/reference/since/5.8.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Ffunctions%2Fwp_enqueue_editor_format_library_assets%2F)
before being able to contribute a note or feedback.