apply_filters( ‘pre_comment_author_url’, string $author_url_cookie )

In this article

Filters the comment author’s URL cookie before it is set.

Description

When this filter hook is evaluated in wp_filter_comment() , the comment author’s URL string is passed.

Parameters

$author_url_cookiestring
The comment author URL cookie.

Source

$comment_author_url = apply_filters( 'pre_comment_author_url', $_COOKIE[ 'comment_author_url_' . COOKIEHASH ] );

Changelog

VersionDescription
1.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.