Advertisement
Guest User

footer

a guest
Apr 6th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.30 KB | None | 0 0
  1.                         </div> <!-- #container -->
  2.             <div id="push"></div>
  3.  
  4.         </div><!-- #wrapper -->
  5.  
  6.         <?php do_action( 'bp_after_container' ) ?>
  7.         <?php do_action( 'bp_before_footer' ) ?>
  8.  
  9.             <div id="footer">
  10.  
  11.                 <div id="colophon">
  12.  
  13.                     <div class="footer-widget">
  14.                         <?php if ( !function_exists('dynamic_sidebar')
  15.                                 || !dynamic_sidebar('Footer #1') ) : ?>
  16.                         <?php endif; ?>
  17.                     </div>
  18.  
  19.                     <div class="footer-widget">
  20.                     <?php if ( !function_exists('dynamic_sidebar')
  21.                             || !dynamic_sidebar('Footer #2') ) : ?>
  22.                     <?php endif; ?>
  23.                     </div>
  24.  
  25.                     <div class="footer-widget">
  26.                         <?php if ( !function_exists('dynamic_sidebar')
  27.                                 || !dynamic_sidebar('Footer #3') ) : ?>
  28.                         <?php endif; ?>
  29.                     </div>
  30.  
  31.                     <div class="footer-widget last">
  32.                     <?php if ( !function_exists('dynamic_sidebar')
  33.                             || !dynamic_sidebar('Footer #4') ) : ?>
  34.                     <?php endif; ?>
  35.                     </div>
  36.                 <div class="clear"></div>
  37.                 <!--<removes footer link>  -->
  38.                  <div id="footer-links">
  39.                     <?php //wp_list_pages('exclude=10,520,22,14'); ?>
  40.                         <?php //wp_list_pages('depth=1&sort_column=menu_order&exclude=10,114&title_li=' . ('') . '' ); ?>
  41.                     <ul class="footer-menu">
  42.                             <?php if ( has_nav_menu( 'secondary-menu' ) ) { ?>
  43.                                 <?php wp_nav_menu( array( 'container' => false, 'menu_id' => 'nav', 'theme_location' => 'secondary-menu', 'items_wrap' => '%3$s' ) ); ?>
  44.                             <?php } else { ?>
  45.                                 <?php wp_list_pages( 'title_li=&depth=3&exclude=10,520,22,14,538,543' . bp_dtheme_page_on_front() ); ?>
  46.                             <?php   } ?>
  47.                          </ul>
  48.  
  49.                 </div>
  50.  
  51.                 <div id="credits">
  52.                     <p>Copyright &copy; <?php echo date('Y'); ?> <?php bloginfo('name'); ?><!-- &nbsp;&middot;&nbsp;<a href="http://www.buddyboss.com/" target="_blank">BuddyPress Themes by BuddyBoss</a>  &nbsp;&middot;&nbsp;--> <?php //wp_loginout( $redirect ); ?></p>
  53.                 </div>
  54.  
  55.                 <?php do_action( 'bp_footer' ) ?>
  56.  
  57.                 </div>
  58.  
  59.             </div><!-- #footer -->
  60.  
  61.         <?php do_action( 'bp_after_footer' ) ?>
  62.  
  63.         <!-- required to load the BuddyBar -->
  64.         <?php wp_footer(); ?>
  65.  
  66.         <!-- append buddyboss_wall log if needed -->
  67.         <?php if (BUDDY_BOSS_WALL_DEBUG):?>
  68.             <div class="buddyboss_log">
  69.             <?php buddy_boss_dump_log();?>
  70.             </div>
  71.         <?php endif;?>
  72.  
  73.     </body>
  74.  
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement