0
我有多個標籤,並且想要爲每個人標籤創建多個single.php。通過標籤ID或名稱爲特定標籤創建single.php
如何爲標籤創建single.php?
此代碼適用於類別,如何編輯標籤?
function my_category_templates($single_template) {
global $post;
if (in_category('raspee')) {
$single_template = dirname(__FILE__) . '/single-raspee.php';
}
return $single_template;
}
add_filter("single_template", "my_category_templates");
在此發佈您的問題http://wordpress.stackexchange.com/ – unixmiah
您應該瞭解[Template Hierarchy](https://developer.wordpress.org/themes/basics/template-hierarchy/#tag)。 – MinhTri