Advertisement
xpeed

Untitled

Apr 14th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.11 KB | None | 0 0
  1. if($bg_options == 'video'){
  2.        $filetype = wp_check_filetype($atts['background_options']['video']['video']);
  3.     $filetypes = array('mp4' => 'mp4', 'ogv' => 'ogg', 'webm' => 'webm', 'jpg' => 'poster');
  4.     $filetype = array_key_exists((string) $filetype['ext'], $filetypes) ? $filetypes[$filetype['ext']] : 'video';
  5.     $bg_video_data_attr = 'data-wallpaper-options="' . fw_htmlspecialchars(json_encode(array('source' => array($filetype => $atts['background_options']['video']['video'])))) . '"';
  6.     $section_extra_classes .= ' background-video';
  7.     $overlays = $atts['background_options']['video']['overlay_options']['yes']['background'];
  8.     $overlay = "style='background-color:$overlays;z-index:3;position:relative;'";
  9. }
  10.  
  11.  
  12.  
  13.  
  14. ?>
  15. <section  id="<?php echo $id; ?>" class="fw-main-row <?php echo $section_extra_classes ?> <?php echo $custom_class; ?>" <?php echo $section_style; ?> <?php echo $bg_video_data_attr; ?> >
  16.     <div <?php echo $overlay; ?>>
  17.         <div class="<?php echo $container_class; ?> <?php echo $space ?>">
  18.             <?php echo do_shortcode($content); ?>
  19.         </div>
  20.     </div>
  21. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement