Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: set_comment_cookies

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
143
144 /**
145  * Perform other actions when comment cookies are set.
146  *
147  * @since 3.4.0
148  *
149  * @param object $comment Comment object.
150  * @param WP_User $user   User object. The user may not exist.
151  */
152 do_action( 'set_comment_cookies', $comment, $user );
153
154 $location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id;
155
156 /**
157  * Filter the location URI to send the commenter after posting.
158  *
159  * @since 2.0.5
160  *
161  * @param string $location The 'redirect_to' URI sent via $_POST.