This appears to be a consequence of WP 4.5 adding the singular
class to the body
for itself. TwentyEleven assumes that it can prevent the singular
class from being present on certain page templates, but this is no longer the case. For now this can be fixed by using a child theme of TwentyEleven and adding this to your child theme’s functions.php
file:
function twentyeleven_body_classes_fix( $classes ) {
if ( is_home() || is_page_template( 'showcase.php' ) || is_page_template( 'sidebar-page.php' ) ) {
$index = array_search('singular', $classes);
if ( $index !== false ) unset($classes[$index]);
}
return $classes;
}
add_filter( 'body_class', 'twentyeleven_body_classes_fix' );
See ticket #36510 for more information.