Example #1
0
/**
 * Highwind body bottom action
 * @since 1.0
 */
function highwind_body_bottom()
{
    do_action('highwind_body_bottom');
    tha_body_bottom();
}
Example #2
0
?>
		<div class="spacer-10"></div>
		<?php 
wp_nav_menu(array('container' => 'nav', 'container_class' => 'footernav', 'theme_location' => 'footer', 'fallback_cb' => false, 'depth' => 1));
?>
		<div class="credit">
			<?php 
if (isset($ap_options['footer']) && $ap_options['footer'] != '') {
    echo wp_kses_post(stripcslashes($ap_options['footer']));
} else {
    echo wp_kses_post($ap_defaults['footer']);
}
?>
		</div>
		<?php 
tha_footer_bottom();
?>
	</footer>
	<?php 
tha_footer_after();
?>

</div><!-- closes .container -->

<?php 
tha_body_bottom();
wp_footer();
?>
</body>
</html>
Example #3
0
/**
 * Just after closing </body>
 *
 * @see footer.php
 */
function responsive_mobile_body_bottom()
{
    do_action('responsive_mobile_container');
    do_action('responsive_mobile_body_bottom');
    tha_body_bottom();
}