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