添加
<?php get_footer(); ?>
进入索引。php或您正在使用的模板
然后创建页脚。php并添加如下内容:
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>