描述
引入当前主题的页脚文件 footer.php,如果使用特定的名字,那么就会调用这个特定名字的页脚文件 footer-{name}.php 。
如果主题没有 footer.php 就会引入默认的 wp-includes/theme-compat/footer.php 。
用法
<?php get_footer( $name ); ?>
参数
- $name
- (string) (可选) 调用 footer-name.php.
- 默认: None
例子
404页面
下面的代码是一个简单的404页面模板 "HTTP 404: Not Found" (它应该包含在你的主题中,名为 404.php)
<?php get_header(); ?>
<h2>Error 404 - Not Found</h2>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
多个页脚
不同的页面显示不同的页脚
<?php
if ( is_home() ) :
get_footer( 'home' );
elseif ( is_404() ) :
get_footer( '404' );
else :
get_footer();
endif;
?>
首页和404页面的专用页脚应该分别命名为 footer-home.php 和 footer-404.php 。
资源文件
get_footer() 包含在 wp-includes/general-template.php.
相关函数
get_header(), get_sidebar(), get_template_part(), get_search_form(),comments_template()
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
倡萌童鞋,我觉得这篇文章不错,可以转载到我的博客么,我会在文末附上本文的来源地址。