You appear to be a bot. Output may be restricted
Description
Add schema markup attributes for comment author link element.
Usage
$array = comment_author_link( $attributes );
Parameters
- $attributes
- ( array ) required – Existing attributes for comment author link element.
Returns
array Amended attributes for comment author link element.
Source
File name: genesis/lib/functions/schema.php
Lines:
1 to 6 of 6
function comment_author_link( $attributes ) { $attributes['itemprop'] = 'url'; return $attributes; }