diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php index fedb696e9d..7dfe27ff5f 100644 --- a/wp-admin/includes/class-wp-posts-list-table.php +++ b/wp-admin/includes/class-wp-posts-list-table.php @@ -768,7 +768,7 @@ class WP_Posts_List_Table extends WP_List_Table { echo '
' . $locked_avatar . ' ' . $locked_text . "
\n"; } - if ( ! $this->hierarchical_display && 'excerpt' == $mode && current_user_can( 'read_post', $post->ID ) ) { + if ( ! is_post_type_hierarchical( $this->screen->post_type ) && 'excerpt' == $mode && current_user_can( 'read_post', $post->ID ) ) { the_excerpt(); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 6cda89c98d..1a7e043a57 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32748'; +$wp_version = '4.3-alpha-32749'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.