filtrdynamicznyod 4.5.0
customize_partial_render_{$partial->id}
Args 3Plik wp-includes/customize/class-wp-customize-partial.php
Opis — z kodu źródłowego
Filters partial rendering for a specific partial.
The dynamic portion of the hook name, $partial->ID refers to the partial ID.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$rendered | string | array | false | The partial value. Default false. |
$partial | \WP_Customize_Partial | WP_Customize_Setting instance. |
$container_context | array | Optional array of context data associated with the target container. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'customize_partial_render_{$partial->id}', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'customize_partial_render_{$partial->id}', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii