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