سلام
کد زیر که عنوان 9 تا پست اخیر تو همه دسته ها رو نشون میده رو میخام تبدیل کنم به کدی که همه رو جز دسته ای خاص یا دسته هایی خاص نشون بده .
مثلا یکی دوتا دسته تو لیست نیاد .
<?php $display = new WP_query(); $display->query('showposts=9'); global $wp_query; $wp_query->in_the_loop = true; while ($display->have_posts()) : $display->the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php dt_posttype() ?><?php the_title(); ?></a>
<span class="postinfo"><?php the_time('Y.m.d g:ia'); ?> | <?php comments_popup_link(__('0 نظر','news'), __('1 نظر','news'), __('% نظر','news'), '', 'دیدگاه بسته شده'); ?></span>
</li>
<?php endwhile; ?>
پیشاپیش ممنون