显示Archives.php中的所有自定义帖子类型

时间:2011-06-11 作者:wenbert

我该怎么做?archive.php 只有以下内容:

wp_get_archives(\'type=monthly\');
以及wp_get_archives() 没有显示所有帖子类型的参数。

我也认为archive-[post_type].php 不是我要找的,因为我希望所有帖子类型都显示在一个归档页面中。

谢谢

W

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

如果您使用

\'has_archive\' => true // Will use the post type slug, ie. example
// or 
\'has_archive\' => \'my-example-archive\' // Explicitly setting the archive slug

http://codex.wordpress.org/Function_Reference/register_post_type

结束

相关推荐