akcjaod 5.9.0
render_block_core_template_part_none
Opis — z kodu źródłowego
Fires when a requested block template part does not exist in the database nor in the theme.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$template_part_id | string | The requested template part namespaced to the theme. |
$attributes | array | The block attributes. |
$template_part_file_path | string | Absolute path to the not found template path. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'render_block_core_template_part_none', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'render_block_core_template_part_none', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii