This is using a custom post type 我在函数中设置的。php文件。我希望得到的建议之一是,为什么我的自定义“演讲者”帖子类型中有14个条目,但我的页面上只有10个?是什么限制了它?
这就是我在函数中所做的。php页面
// Creates Speakers post type
register_post_type(\'speakers\', array(
\'label\' => \'Speakers\',
\'public\' => true,
\'show_ui\' => true,
\'capability_type\' => \'post\',
\'hierarchical\' => false,
\'rewrite\' => array(\'slug\' => \'speakers\'),
\'query_var\' => true,
\'supports\' => array(
\'title\',
\'editor\',
\'excerpt\',
\'trackbacks\',
\'custom-fields\',
\'comments\',
\'revisions\',
\'thumbnail\',
\'author\',
\'page-attributes\',)
) );
这是我所有14位演讲者的屏幕截图,但当你进入我的演讲者页面时,你只会看到10位演讲者。
任何建议都将不胜感激!