customize_partial_render хук-фильтрWP 4.5.0

Filters partial rendering.

Использование

add_filter( 'customize_partial_render', 'wp_kama_customize_partial_render_filter', 10, 3 );

/**
 * Function for `customize_partial_render` filter-hook.
 * 
 * @param string|array|false   $rendered          The partial value.
 * @param WP_Customize_Partial $partial           WP_Customize_Setting instance.
 * @param array                $container_context Optional array of context data associated with the target container.
 *
 * @return string|array|false
 */
function wp_kama_customize_partial_render_filter( $rendered, $partial, $container_context ){

	// filter...
	return $rendered;
}
$rendered(строка|массив|false)
The partial value.
По умолчанию: false
$partial(WP_Customize_Partial)
WP_Customize_Setting instance.
$container_context(массив)
Optional array of context data associated with the target container.

Список изменений

С версии 4.5.0 Введена.

Где вызывается хук

WP_Customize_Partial::render()
customize_partial_render
wp-includes/customize/class-wp-customize-partial.php 246
$rendered = apply_filters( 'customize_partial_render', $rendered, $partial, $container_context );

Где используется хук в WordPress

Использование не найдено.