0
有沒有簡單的方法來改變WP的默認模板層次?更改WordPress的模板層次
例如;
說我要改變我的主題目錄結構,使其完全從模板層次改變這裏建議基於條件句:
http://codex.wordpress.org/Template_Hierarchy
,如果我想,以確保所有的頁面類型(is_single()
is_home()
等)它總是打開一個模板文件,然後煽動我自己的模式提供輸出?
非常感謝!
有沒有簡單的方法來改變WP的默認模板層次?更改WordPress的模板層次
例如;
說我要改變我的主題目錄結構,使其完全從模板層次改變這裏建議基於條件句:
http://codex.wordpress.org/Template_Hierarchy
,如果我想,以確保所有的頁面類型(is_single()
is_home()
等)它總是打開一個模板文件,然後煽動我自己的模式提供輸出?
非常感謝!
我會做這樣的: 易於閱讀和行之有效的
的single.php:
<?php include_once('template-you-want.php');
home.php:
<?php include_once('template-you-want.php');
如果你不想要有這兩個文件在index.php做:
<?php
// at the very top
if (is_single()){
include_once('template-you-want.php');
die(); // don't continue
}
if (is_home()){
include_once('template-you-want.php');
die(); // don't continue
}
請勿重複提問:http://wordpress.stackexchange.com/questions/63614/changing-the-template-hierarchy – janw