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 |
---|---|
456 | * Enables creating comments for anonymous users. |
457 | * |
458 | * @since 4.7.0 |
459 | * |
460 | * @param bool $allow_anonymous Whether to allow anonymous comments to |
461 | * be created. Default `false`. |
462 | * @param WP_REST_Request $request Request used to generate the |
463 | * response. |
464 | */ |
465 | $allow_anonymous = apply_filters( 'rest_allow_anonymous_comments', false, $request ); |
466 |
|
467 | if ( ! $allow_anonymous ) { |
468 | return new WP_Error( |
469 | 'rest_comment_login_required', |
470 | __( 'Sorry, you must be logged in to comment.' ), |
471 | array( 'status' => 401 ) |
472 | ); |
473 | } |
474 | } |