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 |
---|---|
409 | * Enables creating comments for anonymous users. |
410 | * |
411 | * @since 4.7.0 |
412 | * |
413 | * @param bool $allow_anonymous Whether to allow anonymous comments to |
414 | * be created. Default `false`. |
415 | * @param WP_REST_Request $request Request used to generate the |
416 | * response. |
417 | */ |
418 | $allow_anonymous = apply_filters( 'rest_allow_anonymous_comments', false, $request ); |
419 | if ( ! $allow_anonymous ) { |
420 | return new WP_Error( 'rest_comment_login_required', __( 'Sorry, you must be logged in to comment.' ), array( 'status' => 401 ) ); |
421 | } |
422 | } |
423 |
|
424 | // Limit who can set comment `author`, `author_ip` or `status` to anything other than the default. |
425 | if ( isset( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( 'moderate_comments' ) ) { |
426 | return new WP_Error( |
427 | 'rest_comment_invalid_author', |