WP HOOKS
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

ParametrTypOpis
$renderedstring | array | falseThe partial value. Default false.
$partial\WP_Customize_PartialWP_Customize_Setting instance.
$container_contextarrayOptional 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
}

Popularne w tej kategorii