WordPress函数 get_footer()

WordPress函数 get_footer()

介绍

包含当前主题目录中的footer.php模板文件。 如果指定了名称,则将包含专门的页脚 -{name}.php。

如果主题不包含footer.php文件,则将包含默认主题 wp-includes/theme-compat/footer.php 中的页脚。

使用

<?php get_footer( $name ); ?>

参数

$name
(string) (optional) Calls for footer-name.php.
Default: None

返回

None.

示例

简单的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;
?>

在首页使用 footer-home.php,404页面使用 footer-404.php,其他页面使用 footer.php。

参考资料:https://codex.wordpress.org/Function_Reference/get_footer

版权声明
转载请注明本文来源:WordPress函数 get_footer()
转载请注明本文地址:https://www.e363.com/1109.html
THE END
喜欢龙网的内容,就支持一下吧!
点赞56赞赏分享
评论 抢沙发

请登录后发表评论

    暂无评论内容