詳解WordPress開發中get_header取得頭部函數的用法

WBOY
發布: 2016-07-29 09:07:09
原創
946 人瀏覽過

函數意義詳解
從目前主題呼叫header.php檔案。是不是很簡單?好吧,如果你是新手的話這裡要提醒一下,這裡的get和get_children()、get_category中的get略有不同之處。

get_header函數宣告(定義)
之前寫文章很少會寫到函數定義的程式碼,後來自己翻看的時候發現這個習慣不太好,所以決定,只要篇幅允許,就會把函數主題貼出來,方便自己翻看。
get_header 函數,宣告(定義)的位置,是在 wp=include/general-template.php 檔案的第 24 – 36 行左右的位置。

function get_header( $name = null ) {
 do_action( 'get_header', $name );
 
 $templates = array();
 if ( isset($name) )
 $templates[] = "header-{$name}.php";
 
 $templates[] = 'header.php';
 
 // Backward compat code will be removed in a future release
 if ('' == locate_template($templates, true))
 load_template( ABSPATH . WPINC . '/theme-compat/header.php');
}
登入後複製

get_header函數的使用

<&#63;php get_header( $name ); &#63;>
登入後複製

很簡單,從上面的函數宣告中我們也能看出,該函數只接受一個變數作為參數。

參數解釋
$name ,從上面的函數宣告中我們可以看出,$name是一個字串型變量,用來呼叫header的別名模板,
例如$name = “ab”;
也就是我們這樣

<&#63;php 
  $name = “ab”
  get_header( $name ); 
 
&#63;>
登入後複製

這將會呼叫header-ab.php 檔案作為頭部檔案的呼叫。

例子:

1.簡單的404 頁面

下面的程式碼是一個簡單模板文件,專門用來顯示"HTTP 404: Not Found" 錯誤的(這個文件應該包含在你的主題中,名為404 .php)

<&#63;php get_header(); &#63;>
<h2>Error 404 - Not Found</h2>
<&#63;php get_sidebar(); &#63;>
<&#63;php get_footer(); &#63;>

登入後複製

2.多種頭部

為不同的頁面顯示不同的頭部

<&#63;php
if ( is_home() ) :
 get_header( 'home' );
elseif ( is_404() ) :
 get_header( '404' );
else :
 get_header();
endif;
&#63;>
登入後複製

這些為home 和404 準備的頭部應該分別命名為  header-home.php 和header-home. -404.php 。

以上就介紹了詳解WordPress開發中get_header獲取頭部函數的用法,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板