diff --git a/wp-content/themes/twentysixteen/inc/template-tags.php b/wp-content/themes/twentysixteen/inc/template-tags.php index eb87203062..fa1ad8efed 100644 --- a/wp-content/themes/twentysixteen/inc/template-tags.php +++ b/wp-content/themes/twentysixteen/inc/template-tags.php @@ -213,7 +213,7 @@ function twentysixteen_categorized_blog() { set_transient( 'twentysixteen_categories', $all_the_cool_cats ); } - if ( $all_the_cool_cats > 1 ) { + if ( $all_the_cool_cats > 1 || is_preview() ) { // This blog has more than 1 category so twentysixteen_categorized_blog should return true. return true; } else { diff --git a/wp-includes/version.php b/wp-includes/version.php index 63b30e2178..622f94ee24 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-40907'; +$wp_version = '4.9-alpha-40908'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.