我想在特定类别中隐藏自己的日期和时间。我有下面的代码,每个页面显示并自动应用于每个类别。如何排除某些类别以显示此信息。
提前致谢
if (have_posts()):
while(have_posts() ): the_post(); ?>
<div align="center" class="blogimage"> <?php the_post_thumbnail( 'shop_single' ); ?>
<h3><?php the_title(); ?></h3>
<?php the_date(); ?>
<p> By </p>
<?php the_author();?>
</div>
<p><?php the_content(); ?></p>
答案 0 :(得分:0)
if (have_posts()):
while(have_posts() ): the_post(); ?>
<div align="center" class="blogimage"> <?php the_post_thumbnail( 'shop_single' ); ?>
<h3><?php the_title(); ?></h3>
<?php if(!in_category(10)):?>
<?php the_date(); ?>
<?php endif;?>
<p> By </p>
<?php the_author();?>
</div>
<p><?php the_content(); ?></p>
!in_category(10)
10是类别ID。 docs