从当前的主题目录加载模板文件footer.php
。如果指定了名称,那么将加载头部文件footer-{name}.php
如果当前主题没有footer.php
文件,将加载默认的wp-includes/theme-compat/footer.php
<?php get_footer($name); ?>
参数名 | 类型 | 默认 | 说明 |
---|---|---|---|
$name | 字符串(可选) | 无 | 调用footer-{name}.php文件 |
<?php
# 如果是首页,则调用 footer-home.php 文件
if (is_home()) {
get_footer('home');
# 如果是404页面,则调用 footer-404.php 文件
} elseif (is_404()) {
get_footer('404');
# 其他的则调用 footer.php 文件
} else {
get_footer();
}
?>
官方链接:https://codex.wordpress.org/Function_Reference/get_footer