Advertisement
srikat

Untitled

Jan 9th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. $minHeight = '380px';
  2.  
  3. if ( is_active_sidebar( 'home-welcome' ) || is_active_sidebar( 'home-image' ) ) {
  4.  
  5. echo '<div class="top"><div class="wrap">';
  6.  
  7. if ( is_active_sidebar( 'home-welcome' ) ) {
  8.  
  9. genesis_widget_area( 'home-welcome', array(
  10. 'before' => '<div class="home-welcome widget-area">',
  11. 'after' => '</div>',
  12. ) );
  13. }
  14.  
  15. if ( is_active_sidebar( 'home-image' ) ) {
  16. genesis_widget_area( 'home-image', array(
  17. 'before' => '<div class="home-image widget-area" style="height:' . $minHeight . ';">',
  18. 'after' => '</div>',
  19. ) );
  20. }
  21.  
  22. echo '</div></div>';
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement