WP HOOKS
filtrod 6.7.2

wp_allowed_block_metadata_collection_roots

Args 1Plik wp-includes/class-wp-block-metadata-registry.phpDokumentacja WP ↗

Opis — z kodu źródłowego

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.

Parametry

ParametrTypOpis
$collection_rootsstring[]List of allowed metadata collection root paths.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'wp_allowed_block_metadata_collection_roots', 'twoja_funkcja' );

function twoja_funkcja($param_1) {
	// Twój kod
}

Popularne w tej kategorii