Filters the root directory paths for block metadata collections.
Description
Any block metadata collection that is registered must not use any of these paths, or any parent directory path of them. Most commonly, block metadata collections should reside within one of these paths, though in some scenarios they may also reside in entirely different directories (e.g. in case of symlinked plugins).
Example:
- It is allowed to register a collection with path
WP_PLUGIN_DIR . '/my-plugin'
. - It is not allowed to register a collection with path
WP_PLUGIN_DIR
. - It is not allowed to register a collection with path
dirname( WP_PLUGIN_DIR )
.
The default list encompasses the wp-includes
directory, as well as the root directories for plugins, must-use plugins, and themes. This filter can be used to expand the list, e.g. to custom directories that contain symlinked plugins, so that these root directories cannot be used themselves for a block metadata collection either.
Parameters
$collection_roots
string[]- List of allowed metadata collection root paths.
Source
$collection_roots = apply_filters( 'wp_allowed_block_metadata_collection_roots', $collection_roots );
Changelog
Version | Description |
---|---|
6.7.2 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.