WP_QUERY数组键/值对?

时间:2013-08-08 作者:Simon Cooper

我有这样一个WP\\U查询。

    <?php
        $quote_args = array(
            \'post_type\' => \'post\',
            \'category_name\' => \'quote\',
            \'orderby\' => \'rand\',
            \'posts_per_page\' => 1
        );

        $quote  = new WP_Query($quote_args);

        if($quote->have_posts()):
            while($quote->have_posts()):
                $quote->the_post();
    ?>
    <div id="testimonialWrap">  
        <p class="testimonial">
            <?php the_content_rss(); ?>
            <span><?php echo the_title(); ?></span>
            <em></em>
        </p>
    </div>
    <?php
        endwhile;
        endif;
    ?>
它只是随机选择引用的帖子。

我的问题是$quote\\u args数组有一组键/值对:(\'post\\u type\'=>\'post\')

这里有可以使用的钥匙列表吗。这些键/值对是否有名称。

1 个回复
SO网友:s_ha_dum

这里有可以使用的钥匙列表吗。这些键/值对是否有名称。

The "list" is in the Codex on the WP_Query page 或者你可以just check the source.

我不知道你在找什么样的“名字”。除了“键/值”之外,我将它们称为“参数”或“参数”(就像法典一样)。我真的不明白问题的那一部分。

结束

相关推荐

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

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