本文整理汇总了PHP中tha_footer_after函数的典型用法代码示例。如果您正苦于以下问题:PHP tha_footer_after函数的具体用法?PHP tha_footer_after怎么用?PHP tha_footer_after使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了tha_footer_after函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wp_nav_menu
?>
<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>
示例2: fastfood_hook_footer_after
function fastfood_hook_footer_after()
{
do_action('fastfood_hook_footer_after');
tha_footer_after();
}
示例3: wallow_hook_footer_after
function wallow_hook_footer_after()
{
do_action('wallow_hook_footer_after');
tha_footer_after();
}
示例4: highwind_footer_after
/**
* Highwind after footer wrapper action
* @since 1.0
*/
function highwind_footer_after()
{
do_action('highwind_footer_after');
tha_footer_after();
}
示例5: responsive_footer_after
/**
* Just after closing </div><!-- end of #footer -->
*
* @see footer.php
*/
function responsive_footer_after()
{
do_action('responsive_footer_after');
tha_footer_after();
}
示例6: shiword_hook_footer_after
function shiword_hook_footer_after()
{
do_action('shiword_hook_footer_after');
tha_footer_after();
}