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
336
337      $comment_ID = (int) $_POST['comment_ID'];
338      $comment_post_ID = (int)  $_POST['comment_post_ID'];
339
340      check_admin_referer('update-comment_' . $comment_ID);
341
342      edit_comment();
343
344      $location = ( empty($_POST['referredby']) ? "edit.php?p=$comment_post_ID&c=1" : $_POST['referredby'] ) . '#comment-' . $comment_ID;
345      $location = apply_filters('comment_edit_redirect', $location, $comment_ID);
346      wp_redirect($location);
347      exit();
348      break;
349
350 default:
351      $title = __('Create New Post');
352      require_once ('./admin-header.php');
353 ?>
354 <?php if ( isset($_GET['posted']) ) : ?>