Как объединить post_in и post__not_in?
-
Нужно, чтобы отображалась 6 страница, но при этом скрывались 73,39,230,153,206,4. Что нужно добавить? Помогите, пожалуйста!
<?php $myposts = new WP_Query( array( 'post__not_in' => array( 73,39,230,153,206,4), 'post_type' => 'page', 'orderby' => 'title', 'order' => 'ASC' ) ); ?> <?php while ( $myposts->have_posts() ) : $myposts->the_post(); ?> <div style="float:left; margin-left:30px; margin-right:0px; margin-bottom:30px;"> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( array(200,300) ); ?></a> <div><a class="model-list" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> <?php if ( $subtitle = get_post_meta( $post->ID, 'subtitle', true ) ) echo "<span>{$subtitle}</span>"; ?></div> </div> <?php endwhile; ?>
- Тема «Как объединить post_in и post__not_in?» закрыта для новых ответов.