Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
13 | public static function handle_shortcode($arguments, $content, $parser, $shortcode, $extra = array()) |
||
14 | { |
||
15 | $string = parent::handle_shortcode($arguments, $content, $parser, $shortcode, $extra); |
||
16 | $string = str_replace('></iframe' , ' loading="lazy"></iframe', $string); |
||
17 | $string = str_replace('></iframe' , ' allowfullscreen></iframe', $string); |
||
18 | |||
19 | return $string; |
||
20 | } |
||
22 |