WP HOOKS
filtrod 5.0.0

excerpt_allowed_blocks

Args 1Plik wp-includes/blocks.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the list of blocks that can contribute to the excerpt.

If a dynamic block is added to this list, it must not generate another excerpt, as this will cause an infinite loop to occur.

Parametry

ParametrTypOpis
$allowed_blocksstring[]The list of names of allowed blocks.

Wywołanie

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

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

Popularne w tej kategorii