日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php getfooter,wordpress函数get_footer()用法示例

發(fā)布時間:2023/12/20 php 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php getfooter,wordpress函数get_footer()用法示例 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

get_footer( string $name = null )

Load footer template.

描述

Includes the footer template for a theme or if a name is specified then a specialised footer will be included.

For the parameter, if the file is called "footer-special.php" then specify "special".

參數(shù)

$name

(string)

(Optional)

The name of the specialised footer.

Default value: null

源代碼

File: wp-includes/general-template.php

function get_footer( $name = null ) {

/**

* Fires before the footer template file is loaded.

*

* The hook allows a specific footer template file to be used in place of the

* default footer template file. If your file is called footer-new.php,

* you would specify the filename in the hook as get_footer( 'new' ).

*

* @since 2.1.0

* @since 2.8.0 $name parameter added.

*

* @param string|null $name Name of the specific footer file to use. null for the default footer.

*/

do_action( 'get_footer', $name );

$templates = array();

$name = (string) $name;

if ( '' !== $name ) {

$templates[] = "footer-{$name}.php";

}

$templates[] = 'footer.php';

locate_template( $templates, true );

}

更新日志

Version

描述

1.5.0

Introduced.

相關函數(shù)

Uses

wp-includes/general-template.php:

get_footer

wp-includes/plugin.php:

do_action()

wp-includes/template.php:

locate_template()

Skip to note content

You must log in to vote on the helpfulness of this noteVote results for this note: 2You must log in to vote on the helpfulness of this note

Contributed by Codex

Multi footers

Different footer for different pages.

if ( is_home() ) :

get_footer( 'home' );

elseif ( is_404() ) :

get_footer( '404' );

else :

get_footer();

endif;

?>

The file names for the home and 404 footers should be footer-home.php and footer-404.php respectively.

Simple 404 page

The following code is a simple example of a template for an “HTTP 404: Not Found” error (which you could include in your theme as 404.php).

Error 404 - Not Found

總結

以上是生活随笔為你收集整理的php getfooter,wordpress函数get_footer()用法示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。