Advertisement
Guest User

footer widget area - footer

a guest
Dec 12th, 2012
3,881
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1.         <?php
  2.             /* footer sidebar */
  3.             if ( ! is_404() ) : ?>
  4.                 <div id="footer-widgets" class="widget-area three">
  5.                     <?php if ( is_active_sidebar( 'sidebar-4' ) ) : ?>
  6.                         <?php dynamic_sidebar( 'sidebar-4' ); ?>
  7.                     <?php endif; ?>
  8.  
  9.                     <?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?>
  10.                         <?php dynamic_sidebar( 'sidebar-5' ); ?>
  11.                     <?php endif; ?>
  12.  
  13.                     <?php if ( is_active_sidebar( 'sidebar-6' ) ) : ?>
  14.                         <?php dynamic_sidebar( 'sidebar-6' ); ?>
  15.                     <?php endif; ?>
  16.                 </div><!-- #footer-widgets -->
  17.         <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement