我正在尝试使用多个参数执行查询,但无法弄清楚如何正确格式化查询。没有任何关于在codex.wordpress中组合查询的文档。
我需要在查询中包含以下内容:
- 类别 id - 仅显示来自某个类别(或类别、数组)的帖子
- 每页的帖子数
- 按日期排序 DESC
- 使用帖子 ID 排除帖子
这是我的尝试:
<?php
$query = new WP_Query('cat=4', array('posts_per_page' => '4'), array('orderby' => 'date','order' => 'DESC'));
if ($query->have_posts()) : while ( $query->have_posts()): $query->the_post(); ?>
<li><a href="<?php the_permalink() ?>">
</li>
<?php endwhile; else: ?>
<p>Sorry, nothing</p>
<?php endif; wp_reset_postdata(); ?>
任何帮助表示赞赏!谢谢!