Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tomhemsley/9487896 to your computer and use it in GitHub Desktop.
Save tomhemsley/9487896 to your computer and use it in GitHub Desktop.
function metaslider_add_title_and_alt_and_rel_to_anchor($attributes, $slide, $slider_id) {
$attributes['rel'] = 'lightbox';
$attributes['title'] = $slide['title'];
$attributes['alt'] = $slide['alt'];
return $attributes;
}
add_filter('metaslider_flex_slider_anchor_attributes', 'metaslider_add_title_and_alt_and_rel_to_anchor', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment