The Easiest Way to Save and Share Code Snippets on the web

Untitled

eiffel

posted: Apr, 23rd 2012 | jump to bottom

<?php
/**
 * Footer Template
 *
 * The footer template is generally used on every page of your site. Nearly all other
 * templates call it somewhere near the bottom of the file. It is used mostly as a closing
 * wrapper, which is opened with the header.php file. It also executes key functions needed
 * by the theme, child themes, and plugins. 
 *
 * @package Oxygen
 * @subpackage Template
 */
?>
 
 
				<?php get_sidebar( 'secondary' ); // Loads the sidebar-secondary.php template. ?>
 
				</div><!-- .content-wrap -->
 
				<?php do_atomic( 'close_main' ); // oxygen_close_main ?>
 
		</div><!-- #main -->
 
		<?php do_atomic( 'after_main' ); // oxygen_after_main ?>
 
		<?php get_sidebar( 'subsidiary' ); // Loads the sidebar-subsidiary.php template. ?>		
 
		<?php do_atomic( 'before_footer' ); // oxygen_before_footer ?>
 
		<div id="footer"  style="background-color:red">
 
			<?php do_atomic( 'open_footer' ); // oxygen_open_footer ?>
 
			<div id="footer-content">
 
				 <?php echo apply_atomic_shortcode( 'footer_content', hybrid_get_setting( 'footer_insert' ) ); ?> 
 
 
				<?php dynamic_sidebar( 'footer_widget_area' ) ?>  
 
 
			</div>
 
			<?php get_template_part( 'menu', 'subsidiary' ); // Loads the menu-subsidiary.php template.  ?>
 
			<?php do_atomic( 'footer' ); // oxygen_footer ?>
 
			<?php do_atomic( 'close_footer' ); // oxygen_close_footer ?>
 
		</div><!-- #footer -->
 
		<?php do_atomic( 'after_footer' ); // oxygen_after_footer ?>
 
		</div><!-- .wrap -->
 
	</div><!-- #container -->
 
	<?php do_atomic( 'close_body' ); // oxygen_close_body ?>
 
	<?php wp_footer(); // wp_footer ?>
 
</body>
</html>
4353 views