使用特定类别的帖子创建wp查询

时间:2013-04-21 作者:Kirsty Marks

Im运行特定的wp\\U查询,以在特定类别的滑块中显示缩略图。

<?php $the_query = new WP_Query (\'showposts=2\', \'category_name=Events\'); ?>
这似乎不起作用,我是否在某个地方开始时缺少数组

<?php $the_query = new WP_Query array(\'showposts=2\', \'category_name=Events\'); ?>
上面的话似乎让它崩溃了。

任何建议都很好。

1 个回复
最合适的回答,由SO网友:tfrommen 整理而成

使用以下任一选项:

$the_query = new WP_Query(\'posts_per_page=2&category_name=events\');

$the_query = new WP_Query(array(
    \'posts_per_page\' => 2,
    \'category_name\' => \'events\', // this is the category SLUG
));
<小时>// EDIT
Please note 那个category_name 实际上是类别slug (一个单词的名字原来是一样的)。但它不是实际名称(可能有空格、特殊字符等)。在您的情况下,如果您只想指定某个类别,您可以通过ID(cat=42) 或者鼻涕虫(category_name=events).

如果你真的想/必须使用这个名字,你必须使用get_cat_ID(\'Category Name\'), 例如:

$the_query = new WP_Query(array(
    \'posts_per_page\' => 2,
    \'cat\' => get_cat_ID(\'Events\'),
));

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post