是否从数据库中选择带有任何post_type的帖子?

时间:2014-03-10 作者:Lisandro Vaccaro

我试图从数据库中选择所有行,而不管post类型如何,但是在抑制post\\u类型时,WP\\u查询只获取具有post_type = "post" 是否有方法抑制post\\u类型筛选器(或选择所有post类型)?

// This just selects post_type = "posts"
$args = array(
 \'post_status\' => \'publish\',
 \'posts_per_page\' => -1,
 \'ignore_sticky_posts\' => true,
);
$qry = new WP_Query( $args );

1 个回复
SO网友:s_ha_dum

默认情况下——也就是说,unlss另有指示--WP_Query 将搜索post 岗位类型。您可以提供\'post_type\' => \'any\' 检索所有帖子类型,但请注意附件等都是帖子类型。例如

$args = array(
  \'post_status\' => \'publish\',
  \'posts_per_page\' => -1,
  \'ignore_sticky_posts\' => true,
  \'post_type\' => \'any\'
);
$qry = new WP_Query( $args );
var_dump($qry->request);
帖子类型设置为not searchable, 例如,菜单帖子类型(IMHO根本不允许成为帖子类型)将被忽略。如果你需要那些奇怪的球杆类型,你需要列出它们。get_post_types() 应该有帮助。

$args = array(
   \'post_status\' => \'publish\',
   \'posts_per_page\' => -1,
   \'ignore_sticky_posts\' => true,
   \'post_type\' => get_post_types(),
);
$qry = new WP_Query( $args );

结束

相关推荐

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

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