Guest User

Untitled

a guest
Feb 15th, 2019
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php if( is_active_sidebar('home-orange-sidebar_left') || is_active_sidebar('home-orange-sidebar_center') || is_active_sidebar('home-orange-sidebar_right') ) : ?>
  2.  
  3. <div class="top-contact-detail-section">
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-md-6">
  7. <?php if( is_active_sidebar('home-orange-sidebar_left') ) :
  8. if ( function_exists('dynamic_sidebar')) :
  9. dynamic_sidebar( 'home-orange-sidebar_left' );
  10. endif;
  11. endif; ?>
  12. </div>
  13.  
  14. <div class="col-md-6">
  15. <?php if( is_active_sidebar('home-orange-sidebar_right') ) :
  16. if ( function_exists('dynamic_sidebar')) :
  17. dynamic_sidebar( 'home-orange-sidebar_right' );
  18. endif;
  19. endif; ?>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24.  
  25. <?php endif; ?>
  26. <div class="clearfix"></div>
Add Comment
Please, Sign In to add comment