Which function required?

时间:2016-04-28 作者:Dhruvin Sukhadiya

哪个WordPress函数允许您包括footer.php 将文件归档到index.php 文件

2 个回复
最合适的回答,由SO网友:Michael Wilson 整理而成

添加

<?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>

SO网友:Owais Alam

在此处找到答案:参考Guide. 它似乎是默认的页脚。php和标题。php以及其他一些模板文件位于wp includes/theme compat中/