Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_edit_redirect

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
273
274      $comment_id = absint( $_POST['comment_ID'] );
275      $comment_post_id = absint( $_POST['comment_post_ID'] );
276
277      check_admin_referer( 'update-comment_' . $comment_id );
278
279      edit_comment();
280
281      $location = ( empty( $_POST['referredby'] ) ? "edit-comments.php?p=$comment_post_id" : $_POST['referredby'] ) . '#comment-' . $comment_id;
282      $location = apply_filters( 'comment_edit_redirect', $location, $comment_id );
283      wp_redirect( $location );
284
285      exit();
286      break;
287
288 default:
289      wp_die( __('Unknown action.') );
290      break;
291