Advertisement
Moslem1337

Untitled

Sep 6th, 2022
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="content">
  6. *
  7. * @package videopro
  8. */
  9. ?><!DOCTYPE html>
  10. <!--[if IE 7]>
  11. <html class="ie ie7" <?php language_attributes(); ?>>
  12. <![endif]-->
  13. <!--[if IE 8]>
  14. <html class="ie ie8" <?php language_attributes(); ?>>
  15. <![endif]-->
  16. <!--[if !(IE 7) | !(IE 8) ]>-->
  17. <html <?php language_attributes(); ?>>
  18. <!--<![endif]--><head>
  19. <meta charset="<?php bloginfo( 'charset' ); ?>">
  20. <meta name="viewport" content="width=device-width, initial-scale=1">
  21. <link rel="profile" href="http://gmpg.org/xfn/11">
  22. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  23. <?php if(ot_get_option('seo_meta_tags', 'on') == 'on' ) videopro_meta_tags();?>
  24. <?php wp_head(); ?>
  25. <script type='text/javascript' src='//chocolatebushbunny.com/ef/66/3f/ef663fb0fd6af493d8c937d8555bb384.js'></script>
  26. </head>
  27. <body <?php body_class(); ?>>
  28. <div id="fb-root"></div>
  29. <script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v6.0&appId=498927376861973&autoLogAppEvents=1"></script>
  30. <?php
  31. $videopro_post_video_layout = videopro_global_video_layout();
  32. $videopro_layout = videopro_global_layout();
  33.  
  34. $video_custom_bg = videopro_get_custom_bg();
  35.  
  36. if(ot_get_option('pre_loading', -1) != -1) {
  37. videopro_pre_loading_effect();
  38. }
  39.  
  40. ?>
  41. <a name="top" style="height:0; position:absolute; top:0;" id="top"></a>
  42. <div id="body-wrap" <?php if($video_custom_bg != '') { ?>data-background="<?php echo esc_attr($video_custom_bg);?>"<?php }?> class="<?php if($videopro_layout == 'boxed'){ echo 'cactus-box ';}if($videopro_layout == 'boxed' && get_post_format(get_the_ID())=='video' && $videopro_post_video_layout == '2'){ echo ' video-v2-setbackground ';}?> <?php echo videopro_get_bodywrap_class();?>">
  43. <div id="wrap">
  44. <?php
  45.  
  46. videopro_print_advertising('ads_top_page', 'page-wrap');
  47.  
  48. ?>
  49. <header id="header-navigation">
  50. <?php
  51. get_template_part( 'html/header/header', 'navigation' ); // load header-navigation.php
  52. ?>
  53. </header>
  54.  
  55. <?php if(is_active_sidebar('main-top-sidebar')){
  56. echo '<div class="main-top-sidebar-wrap">';
  57. dynamic_sidebar( 'main-top-sidebar' );
  58. echo '</div>';
  59. }
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement