comment_author_link_rel
comment_author_link_rel
Appears in: wordpress-6.2
Hook Type: filter
Displaying hooks found in version: wordpress-6.2apply_filters('comment_author_link_rel') is found 1 times:
- /wp-includes/comment-template.php line 246242243244245246247248249250251
* @param string[]
$rel_parts
An
array
of strings representing the rel tags
* which will be joined into the anchor's rel attribute.
* @param WP_Comment
$comment
The comment object.
*/
$rel_parts
= apply_filters(
'comment_author_link_rel'
,
$rel_parts
,
$comment
);
$rel
= implode(
' '
,
$rel_parts
);
$rel
= esc_attr(
$rel
);
// Empty space before 'rel' is necessary for later sprintf().
$rel
= !
empty
(
$rel
) ? sprintf(
' rel="%s"'
,
$rel
) :
''
;