說實話我還不懂PHP。但我想要達到的目標聽起來很容易。如何調用單獨的header.php?
這裏是我的wordpress single.php
文件的頂部代碼:
<?php get_header(); ?>
我創建了一個單獨的頭即header2.php
。
我想知道什麼,我需要在我single.php
模板頂部寫調用header2.php
,而不是header.php
?
說實話我還不懂PHP。但我想要達到的目標聽起來很容易。如何調用單獨的header.php?
這裏是我的wordpress single.php
文件的頂部代碼:
<?php get_header(); ?>
我創建了一個單獨的頭即header2.php
。
我想知道什麼,我需要在我single.php
模板頂部寫調用header2.php
,而不是header.php
?
如果你想擁有header2.php(而不是header2.php),你必須調用:
<?php get_header('2'); ?>
看到這個頁面:http://codex.wordpress.org/Function_Reference/get_header
只需創建像
header-myHeader2.php
一個頭文件並調用它像
get_header('myHeader2');
語法是header-name.php
,你可以調用使用name
部分。
謝謝你了! –