增加自定义帖子类型中的默认帖子数

时间:2016-10-10 作者:Joe

我需要使用自定义帖子类型和ACF plugin. 目前,我有26个有增长趋势的项目,但我的页面上只显示了10个。以下是部分代码:

<?php $args = array(
\'numberposts\' => -1,
\'post_type\' => \'products\',
\'order\' =>\'ASC\',
 ); ?>

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

我猜ACF是高级自定义字段和CPT自定义帖子类型。我不习惯这些缩写词。

看到-1我想你想展示你所有的26件物品。

改变numberposts 对于posts_per_page

<?php 
$args = array(
\'posts_per_page\' => -1,
\'post_type\' => \'products\', 
\'order\' =>\'ASC\',
 );
?>

相关推荐

如何让`wp-list-table`显示我在Custom-Post中的`Custom-Fields`

一切都好吗<我需要wp-list-table 也要显示custom-fields 在每个custom-post 我有,但我不知道如何做到这一点,在这幅图中,它显示了带有字段的表格:Title, Author and Publication Date: 我想要的是能够选择custom-fields 将出现,例如以下示例Title, Carta, Naipe, Author, and Date of Publication: