get_footer

函数
get_footer ( $name = null, $args = array() )
参数
  • (string) $name The name of the specialised footer.
    Required:
    Default: null
  • (array) $args Optional. Additional arguments passed to the footer template. Default empty array.
    Required:
    Default: array()
返回值
  • (void|false) Void on success, false if the template does not exist.
定义位置
相关方法
get_termwp_footerget_termslogin_footeriframe_footer
引入
1.5.0
弃用
-

get_footer: 这个函数是用来检索当前WordPress主题的页脚模板文件的。页脚模板文件通常用于显示网站的版权信息、信用或任何其他应该出现在每个页面底部的内容。

加载页脚模板。

包括一个主题的页脚模板,如果指定了一个名称,那么将包括一个专门的页脚。

对于参数,如果文件被称为”footer-special.php”,那么指定”special”。

function get_footer( $name = null, $args = array() ) {
	/**
	 * Fires before the footer template file is loaded.
	 *
	 * @since 2.1.0
	 * @since 2.8.0 The `$name` parameter was added.
	 * @since 5.5.0 The `$args` parameter was added.
	 *
	 * @param string|null $name Name of the specific footer file to use. Null for the default footer.
	 * @param array       $args Additional arguments passed to the footer template.
	 */
	do_action( 'get_footer', $name, $args );

	$templates = array();
	$name      = (string) $name;
	if ( '' !== $name ) {
		$templates[] = "footer-{$name}.php";
	}

	$templates[] = 'footer.php';

	if ( ! locate_template( $templates, true, true, $args ) ) {
		return false;
	}
}

常见问题

FAQs
查看更多 >