WP HOOKS
akcjaod 5.9.0

render_block_core_template_part_file

Args 4Plik wp-includes/blocks/template-part.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires when a block template part is loaded from a template part in the theme.

Parametry

ParametrTypOpis
$template_part_idstringThe requested template part namespaced to the theme.
$attributesarrayThe block attributes.
$template_part_file_pathstringAbsolute path to the template path.
$contentstringThe template part content.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'render_block_core_template_part_file', 'twoja_funkcja', 10, 4 );

function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
	// Twój kod
}

Popularne w tej kategorii