Posts, Post Types: When using Excerpt mode on the Posts list table, ensure the excerpt output matches what was manually entered into the Excerpt field.
git-svn-id: https://develop.svn.wordpress.org/trunk@39956 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0a82ee0a31
commit
a96089e8e6
|
@ -956,7 +956,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||||
echo "</strong>\n";
|
echo "</strong>\n";
|
||||||
|
|
||||||
if ( ! is_post_type_hierarchical( $this->screen->post_type ) && '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();
|
echo esc_html( get_the_excerpt() );
|
||||||
}
|
}
|
||||||
|
|
||||||
get_inline_data( $post );
|
get_inline_data( $post );
|
||||||
|
|
Loading…
Reference in New Issue