我正在使用此查询获取最新的3篇帖子
<?php
$query = \'posts_per_page=3\';
$queryObject = new WP_Query($query);
// The Loop...
if ($queryObject->have_posts()) {
while ($queryObject->have_posts()) {
$queryObject->the_post();
the_title();
the_content();
comments_template();
}
}
wp_reset_postdata();
?>
我需要从类别1添加
我尝试添加
query\\u posts($query\\u string。“&;cat=-3”);
在查询的顶部,它可以工作,但格式不同,并且缺少注释框。
我在一个选项卡插件中使用这个查询,并且是唯一一个在我找到的选项卡插件中使用的注释框中的查询,所以我正在尝试让这个特定的查询工作
谢谢你的帮助