WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
458 | * for the containers requested. |
459 | * @type array $errors List of errors triggered during rendering of partials, if `WP_DEBUG_DISPLAY` |
460 | * is enabled. |
461 | * } |
462 | * @param WP_Customize_Selective_Refresh $this Selective refresh component. |
463 | * @param array $partials Placements' context data for the partials rendered in the request. |
464 | * The array is keyed by partial ID, with each item being an array of |
465 | * the placements' context data. |
466 | */ |
467 | $response = apply_filters( 'customize_render_partials_response', $response, $this, $partials ); |
468 |
|
469 | wp_send_json_success( $response ); |
470 | } |
471 | } |
472 |
|