Custom post type archives. see #13818.

git-svn-id: https://develop.svn.wordpress.org/trunk@15803 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2010-10-14 10:39:47 +00:00
parent 2e864d29ad
commit 86ab32a196
3 changed files with 57 additions and 10 deletions

View File

@@ -781,7 +781,15 @@ function get_404_template() {
* @return string
*/
function get_archive_template() {
return get_query_template('archive');
$post_type = get_query_var( 'post_type' );
$templates = array();
if ( $post_type )
$templates[] = "archive-{$post_type}.php";
$templates[] = 'archive.php';
return get_query_template( 'archive', $templates );
}
/**