Support

Account

Home Forums ACF PRO [Gallery – shortcode] Add data-attribute to link wrapping each image Reply To: [Gallery – shortcode] Add data-attribute to link wrapping each image

  • FIXED

    I solved it, no worries. For anyone else wanting to implement this:

    /*
    Add featherlight data attribute to ACF gallery
    */
    function add_featherlight_gallery_attribute( $link ) {
    	
    	return str_replace( '>', ' data-featherlight="image">', $link );
    }
    add_filter( 'wp_get_attachment_link', 'add_featherlight_gallery_attribute', 10, 2 );