Advertisement
Guest User

Untitled

a guest
Apr 25th, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <?php
  2. $consultstreet_top_header_info_content = get_theme_mod( 'consultstreet_top_header_info_content');
  3. $consultstreet_top_header_social_content = get_theme_mod( 'consultstreet_top_header_social_content');
  4. $consultstreet_site_top_header_disabled = get_theme_mod( 'consultstreet_site_top_header_disabled', true );
  5. $consultstreet_site_top_header_info_disabled = get_theme_mod( 'consultstreet_site_top_header_info_disabled', true );
  6. $consultstreet_site_top_header_social_disabled = get_theme_mod( 'consultstreet_site_top_header_social_disabled', true );
  7. $consultstreet_top_header_bac_color = get_theme_mod( 'consultstreet_top_header_bac_color', '#01012f' );
  8. $consultstreet_top_header_container_size = get_theme_mod( 'consultstreet_top_header_container_size', 'container-full' );
  9. ?>
  10. <?php if($consultstreet_site_top_header_disabled == true): ?>
  11. <!--Header Sidebar-->
  12. <header id="site-header" class="site-header">
  13. <div class="<?php echo $consultstreet_top_header_container_size; ?>">
  14. <div class="row">
  15.  
  16. <?php if ( function_exists( 'groovy_menu' ) ) { groovy_menu(); } ?>
  17.  
  18. </div>
  19. </div>
  20. </header>
  21. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement