我对WP编码非常陌生。我在一所大学工作,那里的每一位教师都被分配了CPT。我们希望它使CPT存档看起来与主站点相同。我已经创建了存档帖子类型。php文件,但我从那里完全不知所措。从我在其他问题中看到的情况来看,主页是关键?
我有这个
<?php
// Start the Loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( \'content-fbe\', get_post_format() );
endwhile;
// Previous/next page navigation.
twentyfourteen_paging_nav();
else :
// If no content, include the "No posts found" template.
get_template_part( \'content\', \'none\' );
endif;
?>
任何建议都将不胜感激。