Query not returning CPT posts

时间:2011-08-31 作者:Niels

哎哟,我的头撞到墙上了!

我正在尝试在索引中查询我的帖子类型“clips”。php,但它只返回默认“post”中的post。我需要一些洞察力!我做错了什么?

我的帖子类型:

$args = array( 
    \'labels\' => $labels,
    \'supports\' => $supports, 
    \'hierarchical\' => false,
    \'menu_position\' => 4,
    \'publicly_queryable\' => true,
    \'show_ui\' => true,
    \'public\' => true,
    \'query_var\' => true,
    \'capability_type\' => \'clip\',
    //\'map_meta_cap\' => true,
    //\'capabilites\' => $capabilities,
); 

register_post_type( \'clip\', $args ); 
我的查询(index.php):

<?php query_posts(array(\'posts_per_page\' => 17, \'post_type\' => array(\'clip\'))); ?>

<?php if (have_posts()) : ?>

<ul id="clips" class="clearfix reset">

  <?php while (have_posts()) : the_post(); ?>

    <li>
      <?php the_title();?><br><?php the_permalink(); ?>
      <a id="post-<?php the_id(); ?>" class="videolink" title="Click to view" href="">
      <?php if ( has_post_thumbnail() ) { 
         the_post_thumbnail(); 
        } else { 
        echo "No thumbnail"; 
        } ?></a>
    </li>

   <?php endwhile; ?>

    </ul>


    <?php else: ?>

        <p>Sorry, but this content is not available.</p>

    <?php endif; ?>
请注意,模板文件中没有其他循环。

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

我遇到了类似的问题,并在此处发布了解决方案:

http://wordpress.org/support/topic/role-scoper-updating-query_posts

query\\u posts导致放弃主WP\\u查询。这可能是你想要的行为,也可能不是。如果没有,则需要更新WP\\u查询,然后可以更新函数。php文件中包含一个注册过滤器,该过滤器在WP\\U查询中显示您的内容类型(请参见上面URL中的代码)。如果是,您不关心WP\\u Query,那么我会在have\\u posts之后运行Query\\u posts,并在我的索引中使用此代码。php文件:

    query_posts(array(\'post_type\' => array(\'post\', \'article\', \'document\', \'faq\', \'video\')));

结束

相关推荐

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

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