我想调整或编辑以下代码,以显示所有自定义帖子类型,而不显示页码。我只想在一页中显示所有项目。我不想在这里继续分页。我需要在下面的代码中编辑或添加什么内容?
// show all active coupons for this store and setup pagination
$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
query_posts( array(
\'post_type\' => APP_POST_TYPE,
\'post_status\' => \'publish\',
APP_TAX_STORE => $term->slug,
\'ignore_sticky_posts\' => 1,
\'paged\' => $paged
) );
最合适的回答,由SO网友:Banshi Lal Dangi 整理而成
按以下方式更新代码。
// show all active coupons for this store and setup pagination
query_posts( array(
\'post_type\' => APP_POST_TYPE,
\'post_status\' => \'publish\',
APP_TAX_STORE => $term->slug,
\'ignore_sticky_posts\' => 1,
\'posts_per_page\'=>-1
)
);