Guest User

Untitled

a guest
Jan 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. function woo_tumblog_video_content($post_id) {
  2.  
  3.     if (is_single()) {
  4.  
  5.     $content_tumblog = '<div class="video-wrap">'.woo_embed('key=video-embed&width='.get_option('woo_single_w')).'</div>';
  6.  
  7.     } elseif ( $count <= $woo_options['woo_magazine_feat_posts']) {
  8.    
  9.     $content_tumblog = '<div class="video-wrap">'.woo_embed('key=video-embed&width='.get_option('woo_magazine_f_w')).'</div>';
  10.    
  11.     }
  12.    
  13.     else {
  14.  
  15.     $content_tumblog = '<div class="video-wrap">'.woo_embed('key=video-embed&width='.get_option('woo_tumblog_video_width')).'</div>';
  16.  
  17.     }
  18.  
  19.     return $content_tumblog;
  20.  
  21. }
Add Comment
Please, Sign In to add comment