mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Ensure that get_archive_template() only loads a post type archive (archive-$post_type.php file) if there is exactly one post type in the query.
props scribu. see #22956. for trunk. git-svn-id: http://core.svn.wordpress.org/trunk@23249 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
781ab16abe
commit
ba3036ed75
@ -59,12 +59,14 @@ function get_404_template() {
|
||||
* @return string
|
||||
*/
|
||||
function get_archive_template() {
|
||||
$post_types = get_query_var( 'post_type' );
|
||||
$post_types = array_filter( (array) get_query_var( 'post_type' ) );
|
||||
|
||||
$templates = array();
|
||||
|
||||
foreach ( (array) $post_types as $post_type )
|
||||
if ( count( $post_types ) == 1 ) {
|
||||
$post_type = reset( $post_types );
|
||||
$templates[] = "archive-{$post_type}.php";
|
||||
}
|
||||
$templates[] = 'archive.php';
|
||||
|
||||
return get_query_template( 'archive', $templates );
|
||||
|
Loading…
Reference in New Issue
Block a user