Created
April 3, 2014 09:51
-
-
Save fovoc/9951686 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add custom footer via shoestrap_footer_override action | |
function my_custom_footer_override() { | |
global $ss_footer; | |
?> | |
<div id="footer"> | |
<div id="my-footer-bar"> | |
<div id="my-footer-copyright"><span><?php $ss_footer->html() ?></span></div> | |
<div id="my-footer-social"><span>Footer Social Icons Here</span></div> | |
<div id="my-footer-menu"><span> | |
<?php wp_nav_menu( array( 'theme_location' => 'footermenu' ) ); ?></span> | |
</div> | |
</div><!--#my-footer-bar--> | |
</div><!--#footer--> | |
<?php | |
} | |
add_action( 'shoestrap_footer_override', 'my_custom_footer_override' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment