get_header()(取得頭部)
引入主題的頭部模板,預設會引入目前主題目錄裡的 header.php 檔案。如果指定了一個名稱,則引入當前主題目錄的 header-{name}.php 文件,如果需要引入的文件不存在則引入 wp-includes/theme-compat/header.php 檔案。
用法
get_header( $name );
參數
$name
(字串)(可選)要引入的檔案的名稱,如果指定則引入 header-{$name}.php 檔案。
範例
<?php get_header(); ?>
上邊的程式碼將引入目前主題根目錄的 header.php 檔案。
<?php get_header( 'main' ); ?>
上邊的程式碼將引入目前主題根目錄的 header-main.php 檔案。
if( is_home() ) get_header( 'home' ); elseif( is_404() ) get_header( '404' ); else get_header();
上邊的程式碼會在首頁引入當前主題根目錄的header-home.php 文件,404 頁引入當前主題根目錄的header-404.php 文件,其它頁面將引入當前主題根目錄的header. php 檔案。
其它
此函數位於:wp-includes/general-template.php
get_footer()(取得底部)
get_footer() 用來引入底部模板檔案。如果指定名稱則引入當前主題根目錄的footer-{name}.php 文件,如果不指定則引入當前主題根目錄的footer.php 文件,如果文件不存在則引入wp-includes/theme-compat/footer. php 檔案。
用法
get_footer( $name );
參數
$name
(字串)(選用)引入範本的名稱,如果指定則引入 footer-{$name}.php 檔案。
回傳值
此函數無回傳值。
範例
引入當前主題根目錄的footer.php 檔案:
<?php get_footer(); ?>
引入當前主題根目錄的footer-new.php 檔案:
<?php get_footer( 'new' ); ?>
根據不同的頁面引入不同的範本檔案:
if( is_404() ) get_footer( '404' );//如果是 404 页则引入当前主题根目录的 footer-404.php 文件 elseif( is_home() ) get_footer( 'home' );//如果是首页则引入当前主题根目录的 footer-home.php 文件 else get_footer();//如果不是首页或者 404 页则引入当前主题根目录的 footer.php 文件
其它
此函數位於:wp-includes/general-template.php
以上就介紹了WordPress的主題編寫中獲取頭部模板和底部模板,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。