我的wordpress缺少</body>
和</html>
标记,主题中哪个文件应该包含哪个标记?
我正在使用Otzi Lite wordpress主题。
这是页脚代码(footer.php):
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Otzi Lite
*/
/**
* otzi_lite_after_content hook
*
* @hooked otzi_lite_content_end - 10
* @hooked otzi_lite_sidebar - 20
*
*/
do_action( 'otzi_lite_after_content' );
/**
* otzi_lite_footer hook
*
* @hooked otzi_lite_footer_content_start - 10
* @hooked otzi_lite_site_info_start - 20
* @hooked otzi_lite_footer_site_description - 30
* @hooked otzi_lite_social_menu - 40
* @hooked otzi_lite_footer_content - 50
* @hooked otzi_lite_site_info_end - 60
* @hooked otzi_lite_footer_content_end - 190
* @hooked otzi_lite_page_end - 200
*
*/
do_action( 'otzi_lite_footer' );
/**
* otzi_lite_after hook
*
*/
do_action( 'otzi_lite_after' );
/**
* otzi_lite_after hook
*
* @hooked otzi_lite_scrollup - 10
*
*/
wp_footer();
答案 0 :(得分:2)
这实际上取决于主题,但一般来说,结束</body>
标记通常位于footer.php
文件中。
由于您的主题缺少关闭正文和html标记,只需在页脚末尾添加:
# rest of your codes
wp_footer();
?>
</body>
</html>