pre_comment_author_url WordPress Filter Hook
The pre_comment_author_url hook is a hook that is called before the comment author's URL is displayed. This hook can be used to modify the URL that is displayed, or to add extra data to the URL.
apply_filters( 'pre_comment_author_url', string $author_url_cookie ) #
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_cookie
(string)The comment author URL cookie.
Source
File: wp-includes/comment.php
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |