customize_partial_render_(partial_id) хук-фильтр . WP 4.5.0
Filters partial rendering for a specific partial.
The dynamic portion of the hook name, $partial->ID refers to the partial ID.
Использование
add_filter( 'customize_partial_render_(partial_id)', 'filter_function_name_469', 10, 3 ); function filter_function_name_469( $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 | Введена. |
Где вызывается хук
customize_partial_render_(partial_id)
wp-includes/customize/class-wp-customize-partial.php 259
$rendered = apply_filters( "customize_partial_render_{$partial->id}", $rendered, $partial, $container_context );