WordPress函数:get_footer(获取页脚)

描述

引入当前主题的页脚文件 footer.php,如果使用特定的名字,那么就会调用这个特定名字的页脚文件 footer-{name}.php 。

如果主题没有 footer.php 就会引入默认的 wp-includes/theme-compat/footer.php 。

用法

<?php get_footer( $name ); ?>

参数

$name
(string) (可选) 调用 footer-name.php.
默认: None

示例:

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

<?php
if ( is_home() ) :
	get_footer( 'home' );
elseif ( is_404() ) :
	get_footer( '404' );
else :
	get_footer();
endif;
?>

[/pcsh]

此处评论已关闭