CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 12 Oct 2025 00:40:34 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20181125164630
location: https://web.archive.org/web/20181125164630/https://codex.wordpress.org/Function_Reference/wp_footer
server-timing: captures_list;dur=0.690266, exclusion.robots;dur=0.025187, exclusion.robots.policy;dur=0.011206, esindex;dur=0.013713, cdx.remote;dur=174.880438, LoadShardBlock;dur=503.405496, PetaboxLoader3.datanode;dur=166.997492, PetaboxLoader3.resolve;dur=85.590411
x-app-server: wwwb-app216
x-ts: 302
x-tr: 765
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app216; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 12 Oct 2025 00:40:36 GMT
content-type: text/html; charset=UTF-8
x-archive-orig-server: nginx
x-archive-orig-date: Sun, 25 Nov 2018 16:46:30 GMT
x-archive-orig-transfer-encoding: chunked
x-archive-orig-connection: keep-alive
x-archive-orig-vary: Accept-Encoding
x-archive-orig-x-content-type-options: nosniff
x-archive-orig-vary: Accept-Encoding, Cookie
x-archive-orig-expires: Thu, 01 Jan 1970 00:00:00 GMT
x-archive-orig-cache-control: private, must-revalidate, max-age=0
x-archive-orig-last-modified: Thu, 02 Aug 2018 21:33:59 GMT
x-archive-orig-content-language: en
x-archive-orig-strict-transport-security: max-age=31536000
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 25 Nov 2018 16:46:30 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 15 Aug 2009 16:58:05 GMT", ; rel="prev memento"; datetime="Thu, 25 Oct 2018 03:38:12 GMT", ; rel="memento"; datetime="Sun, 25 Nov 2018 16:46:30 GMT", ; rel="next memento"; datetime="Wed, 05 Dec 2018 14:00:45 GMT", ; rel="last memento"; datetime="Wed, 06 Aug 2025 20:29:09 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: archiveteam_archivebot_go_20181126060001/www.000webhost.com-inf-20181125-123502-dwdqt-00000.warc.gz
server-timing: captures_list;dur=0.768855, exclusion.robots;dur=0.031166, exclusion.robots.policy;dur=0.012830, esindex;dur=0.016749, cdx.remote;dur=76.140624, LoadShardBlock;dur=624.493793, PetaboxLoader3.datanode;dur=632.512774, PetaboxLoader3.resolve;dur=321.368948, load_resource;dur=391.859360
x-app-server: wwwb-app216
x-ts: 200
x-tr: 1188
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Function Reference/wp footer « WordPress Codex
Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!
Function Reference/wp footer
Languages: English • 日本語 (Add your language)
Contents
Description
Fire the 'wp_footer' action. Put this template tag immediately before </body> tag in a theme template (ex. footer.php, index.php).
Usage
<?php wp_footer(); ?>
Parameters
This function does not accept any parameters.
Examples
In twentyten theme
wp-content/themes/twentyten/footer.php
:
... <?php /* Always have wp_footer() just before the closing </body> * tag of your theme, or you will break many plugins, which * generally use this hook to reference JavaScript files. */ wp_footer(); ?> </body> </html>
Notes
- Uses do_action() Calls 'wp_footer' hook.
Change Log
- Since: 1.5.1
Source File
wp_footer() is located in wp-includes/general-template.php
.
Related
- Theme Review, (Required)
- wp_head()
See also index of Function Reference and index of Template Tags.