Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_allow_anonymous_comments

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