get_comment_author_url_link хук-фильтр . WP 1.5.0
Filters the comment author's returned URL link.
Использование
add_filter( 'get_comment_author_url_link', 'filter_function_name_3568' ); function filter_function_name_3568( $return ){ // filter... return $return; }
- $return(строка)
- The HTML-formatted comment author URL link.
Список изменений
С версии 1.5.0 | Введена. |
Где вызывается хук
get_comment_author_url_link
wp-includes/comment-template.php 397
return apply_filters( 'get_comment_author_url_link', $return );