get_footer()WP 1.5.0

Includes the footer.php template file from your current theme's directory. If a $name is specified then footer-{name}.php file will be included.

If the theme contains no footer.php file then the footer from the default theme wp-includes/theme-compat/footer.php will be included.

Hooks from the function

Return

null|false. Void on success, false if the template does not exist.

Usage

get_footer( $name, $args );
$name(string)
The name of the specialized footer.
Default: null
$args(array)
Additional arguments passed to the footer template.
Default: empty array

Examples

0

#1 Simple 404 page template

Code of the 404.php template file:

<?php get_header(); ?>

<h2>Error 404 - Not found</h2>

<?php get_sidebar(); ?>

<?php get_footer(); ?>
0

#2 Different footers for different pages:

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

The theme's files for home and 404 should be footer-home.php and footer-404.php respectively.

Changelog

Since 1.5.0 Introduced.
Since 5.5.0 A return value was added.
Since 5.5.0 The $args parameter was added.

get_footer() code WP 6.5.2

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;
	}
}