我已经定义了一个名为“Press”的自定义帖子类型,我正在尝试修改该自定义类型的单个帖子模板。single posts自定义文件称为“single press.php”
我尝试使用if in\\u category(cat\\u number),get\\u template\\u part type语句。php&;它似乎给了我一个白色的屏幕而不是页面。。。
这是我目前正在单曲中尝试的代码。php文件:
<div class="row">
<div class="col-sm-12">
<?php get_sidebar(); ?>
</div>
</div>
<?php if in_category( $category, $_post ) {
echo(\'Category\')
}
?>
<div class="row">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="col-sm-8 col-sm-offset-2">
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php if(has_post_thumbnail()){
the_post_thumbnail(\'large\');
};
?>
<h1 class="single-entry-title"><?php the_title(); ?></h1>
<h2 class="subhead"><?php the_field(\'subhead\'); ?></h2>
<?php include (TEMPLATEPATH . \'/meta.php\' ); ?>
<div class="entry-content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; endif; ?>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<?php related_posts() ?>
</div>
</div>
<?php get_footer(); ?>
是否有人对可能出现的问题有一些建议,或者如何让单个“新闻”帖子遵循单个新闻中的内容。php??