我想创建一个条件语句来检查循环中是否有特定的post ID,如果为true,它会在其他地方输出一个链接。
这就是我目前的情况:
<?php query_posts(\'post_type=team&orderby=title&order=ASC\'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post grid" id="<?php echo get_the_ID(); ?>">
<div class="plus-sign">
<!-- If team post \'You\' send user to the careers page -->
<?php if ( is_singular( \'2295\' ) ) : ?>
<a href="/careers" title="T+K Careers"><?php the_post_thumbnail(\'team-thumb\'); ?></a>
<?php else : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(\'team-thumb\'); ?></a>
<?php endif; ?>
</div>
<div class="post-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></div>
</div>
<?php endwhile; else: ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p>
<?php endif; ?>