Plugin Directory

Changeset 1116183


Ignore:
Timestamp:
03/19/2015 05:19:48 PM (11 years ago)
Author:
RylanH
Message:

Set vimeo and YT videos to lazy load by default on SF posts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • storyform/trunk/media/storyform-media.php

    r1114239 r1116183  
    362362function storyform_embed_oembed_html( $cache, $url, $attr, $post_ID ) {
    363363    if( in_array( 'autopause', $attr ) ){
    364         return preg_replace( '/<iframe /i', '<iframe data-autopause ', $cache );
    365     }
     364        $cache = preg_replace( '/<iframe /i', '<iframe data-autopause ', $cache );
     365    }
     366
     367    $cache = preg_replace( '/ src=/i', ' data-src=', $cache );
     368
    366369    return $cache;
    367370}
Note: See TracChangeset for help on using the changeset viewer.