如何在我的分类名称中设置POST_PER_PAGE?

时间:2013-08-06 作者:Shihab Malayil
<?php
$myquery[\'tax_query\'] = array(
    \'relation\' => \'OR\',
        array(
            \'taxonomy\' => \'brands\',
            \'terms\' => array(\'ALL\'),
            \'field\' => \'slug\',
            \'operator\' => \'NOT_IN\'
            ),
        array(
            \'taxonomy\' => \'media\',
            \'terms\' => array(\'news\', \'events\'),
            \'field\' => \'slug\',
            \'operator\' => \'NOT_IN\'
            ),
        );
                                        query_posts($myquery);

if ( have_posts() ) : while ( have_posts() ) : the_post();?>
<div>
<php the-title(); ?>
</div>
<php endwhile; else: endif; ?>

1 个回复
SO网友:Krzysiek Dróżdż

只需添加$my_query[\'posts_per_page\'] = 10; (或其他数字)之前query_posts 呼叫

但我不确定我是否理解正确。

结束

相关推荐

create taxonomy

我是word press的新手,我想在属于数据库中某个组的页面上显示结果(我有组列)。我认为这可以通过分类法来完成,所以我有分类表,但我不知道在分类法中写什么。php文件,知道我必须在分类法中编写的最少信息是什么吗。php使其工作。