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 |
---|---|
352 |
|
353 | /** |
354 | * Filters the URI the user is redirected to after editing a comment in the admin. |
355 | * |
356 | * @since 2.1.0 |
357 | * |
358 | * @param string $location The URI the user will be redirected to. |
359 | * @param int $comment_id The ID of the comment being edited. |
360 | */ |
361 | $location = apply_filters( 'comment_edit_redirect', $location, $comment_id ); |
362 |
|
363 | wp_redirect( $location ); |
364 | exit; |
365 |
|
366 | default: |
367 | wp_die( __( 'Unknown action.' ) ); |
368 |
|
369 | } // End switch. |
370 |
|