Display all custom post types in archives.php

If you set up the right parameters for your custom post type using

'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

Leave a Comment