Filters the root directory paths for block metadata collections. 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.
$collection_roots
Sortie :
@param string[] $collection_roots List of allowed metadata collection root paths.
// Modifier la valeur avec le filtre 'wp_allowed_block_metadata_collection_roots'
add_filter('wp_allowed_block_metadata_collection_roots', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($collection_roots) {
// Modifier la valeur
return $collection_roots;
}
Chargement des actualités...