对于周围的大多数人来说,这可能听起来很愚蠢,但我有以下代码:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( in_category(\'123\') ) { ?>
<div class="pdfbox">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p> </p>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(\'pdfs\'); ?></a>
</div>
<?php } else { ?>
<div class="pdfbox">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p> </p>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(\'pdfs\'); ?></a>
</div>
<?php } ?>
<?php endwhile; else: ?>
<?php endif; ?>
问题是,如何添加另一个类别,如如果是类别1,则输出,HTML,如果2,则下一个HTML,如果3,等等。。
谢谢