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