最佳做法是wp_footer()
在页脚中。php。虽然法典上说
在主题模板(例如footer.php、index.php)中,将这个模板标记放在标记的前面。
这是最好的保存wp_footer()
在页脚中。从PluginAPIwp_footer
action
包含时,此函数的默认输出是管理面板,该面板将显示在主题顶部。对于每个主题,它都应该保存在页脚中,因为大多数插件都将其脚本文件或函数绑定到此挂钩。
总之,在创建自定义页脚时。php,包括wp_footer()
在该自定义模板中也是如此。
EDIT
只是想对你的问题做进一步的阐述。结束
</body>
tag是页面调用的最后第二个标记,位于页脚中。php。此外,最重要的是
</html>
标记是页脚中的最后一个标记。php。这将结束您的站点。
看看捆绑主题的页脚,第214页
<?php
/**
* The template for displaying the footer
*
* Contains footer content and the closing of the #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_sidebar( \'footer\' ); ?>
<div class="site-info">
<?php do_action( \'twentyfourteen_credits\' ); ?>
<a href="<?php echo esc_url( __( \'http://wordpress.org/\', \'twentyfourteen\' ) ); ?>"><?php printf( __( \'Proudly powered by %s\', \'twentyfourteen\' ), \'WordPress\' ); ?></a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
最后三行代码是最重要的。因此,出于这些原因,有一个页脚也是非常重要的,否则您将破坏
<body>
和
<html>
标签。不要省略页脚,而是复制页脚。php,重命名它,自定义它,并在需要时调用它,记住,不要移动
wp_footer()
超出页脚