Last active
August 29, 2015 14:08
-
-
Save tomhemsley/3d28c81854a8eaa42bcc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function metaslider_add_data_media_attribute($attributes, $slide, $slider_id) { | |
$image = wp_get_attachment_image_src($slide['id'], 'full', false); | |
$attributes['data-pin-media'] = $image[0]; | |
return $attributes; | |
} | |
add_filter('metaslider_flex_slider_image_attributes', 'metaslider_add_data_media_attribute', 11,3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment