Ticket #37444: 37444a.patch
File 37444a.patch, 506 bytes (added by , 9 years ago) |
---|
-
wp-includes/template.php
90 90 * @return string Full path to archive template file. 91 91 */ 92 92 function get_archive_template() { 93 $post_types = array_filter( (array) get_query_var( 'post_type' ) ); 93 $post_types = (array) get_query_var( 'post_type' ); 94 $post_types = array_filter( $post_types ); 94 95 95 96 $templates = array(); 96 97