Changeset 25745
- Timestamp:
- 10/09/2013 07:13:28 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r25602 r25745 459 459 if ( is_post_type_archive() ) { 460 460 $classes[] = 'post-type-archive'; 461 foreach ( (array) get_query_var( 'post_type' ) as $post_type ) 462 $classes[] = 'post-type-archive-' . sanitize_html_class( $post_type ); 461 $post_type = get_query_var( 'post_type' ); 462 if ( is_array( $post_type ) ) 463 $post_type = reset( $post_type ); 464 $classes[] = 'post-type-archive-' . sanitize_html_class( $post_type ); 463 465 } else if ( is_author() ) { 464 466 $author = $wp_query->get_queried_object();
Note: See TracChangeset
for help on using the changeset viewer.