我有多個WordPress的模板文件:WordPress模板
- 單example_1.php
- 單example_2.php
- 檔案館,example_1.php
- 檔案館,example_2 .php
這些都是完全一樣的,它們只是針對不同的自定義帖子類型。正因爲如此,我想將它們合併爲一個。我已添加此功能:
add_filter('template_include', function($template)
{
$my_types = array('example_1', 'example_2');
$post_type = get_post_type();
if (! in_array($post_type, $my_types))
return $template;
return get_stylesheet_directory() . '/single-example.php';
});
此「重定向」每個單一和檔案站點到相同的模板。
如何將歸檔頁面僅重定向到檔案示例頁面和單頁面示例?
非常感謝,這很好解釋! –