我的网站上有一些通过single.php发布的帖子,现在我有一个新页面。其中有一些我想使用自定义模板的帖子,但是我的帖子是single.php模板。谁能帮我一些可以在single.php中编写的代码,以便我可以使用帖子ID导航。在我的自定义模板中,应该使用什么代码来构建它?
答案 0 :(得分:1)
single.php
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if (have_posts()) : while (have_posts()) : the_post();
$custom_arr = array(1,2,3,4);
if (in_array(get_the_ID(), $custom_arr)) {
get_template_part( 'parts/loop', 'single-custom' );
}
else {
get_template_part( 'parts/loop', 'single' );
}
endwhile; else :
get_template_part( 'parts/content', 'missing' );
endif;
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>
然后创建两个单独的文件/parts/loop-single.php
和/parts/loop-single-custom.php
除了按ID映射外,您还可以按帖子上的自定义类别或自定义字段进行检查,对ID的数组进行硬编码只是不好的做法