【发布时间】:2016-08-06 07:54:13
【问题描述】:
我目前正在使用archive.php 作为类别、标签、作者等的通用列表。我的主题有4 个自定义帖子类型,我希望每个帖子类型都有单独的存档模板。
如何为每个自定义帖子类型添加单独的存档模板?
我有一个代码,但我没有工作,我错过了什么吗?
add_filter( 'template_include', 'wpsites_cpt_archive_page_template', 99 );
function wpsites_cpt_archive_page_template( $template ) {
if ( is_post_type_archive(array( first-post-type ) ) ) {
$new_template = locate_template( array( 'your-cpt-template.php' ) );
if ( '' != $new_template ) {
return $new_template ;
}
}
return $template;
}
【问题讨论】: