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