目录
WordPress模板函数get_footer用来加载页脚模板,即footer.php
get_footer( string $name = null )
get_footer函数默认加载footer.php,但可以通过传递一个参数来加载类似footer-name.php的文件
<?php get_footer('name'); ?>
以上示例加载footer-name.php,如果footer-name.php不存在,则加载footer.php
get_footer函数的用法与get_header函数是一样的,更多用法请阅读:
WordPress模板函数:get_header
扩展阅读
get_footer()函数位于:wp-includes/general-template.php
相关函数:
get_header()
get_sidebar()
get_template_part()
get_search_form()
comments_template()