只要帖子不等于ID 2047,我们如何查询帖子?
这是当前查询。
<?php
$args1 = array(
\'post_type\' => \'options\',
\'tag_slug__and\' => array( $triplevel, $divingtrip, \'accommodation\' ),
\'posts_per_page\' => -1,
\'offset\' => 1,
);
query_posts( $args1 ); while (have_posts()) : the_post();
?>
我试过这个。。。
query_posts( $args1 . \'p!=2047\' );
。。没有任何效果。
有什么想法吗?
非凡的