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 |
---|---|
46 | * Perform other actions when comment cookies are set. |
47 | * |
48 | * @since 3.4.0 |
49 | * @since 4.9.6 The `$cookies_consent` parameter was added. |
50 | * |
51 | * @param WP_Comment $comment Comment object. |
52 | * @param WP_User $user Comment author's user object. The user may not exist. |
53 | * @param bool $cookies_consent Comment author's consent to store cookies. |
54 | */ |
55 | do_action( 'set_comment_cookies', $comment, $user, $cookies_consent ); |
56 |
|
57 | $location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID; |
58 |
|
59 | // If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message. |
60 | if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) { |
61 | $location = add_query_arg( |
62 | array( |
63 | 'unapproved' => $comment->comment_ID, |
64 | 'moderation-hash' => wp_hash( $comment->comment_date_gmt ), |