You appear to be a bot. Output may be restricted
Description
Add attributes for entry title link.
Usage
$array = genesis_attributes_entry_title_link( $attributes );
Parameters
- $attributes
- ( array ) required – Existing attributes for entry title element.
Returns
array Amended attributes for entry title element.
Source
File name: genesis/lib/functions/markup.php
Lines:
1 to 8 of 8
function genesis_attributes_entry_title_link( $attributes ) { $attributes['rel'] = 'bookmark'; $attributes['href'] = get_permalink(); return $attributes; }