Add the filter in display_rows, rather than _display_rows.
git-svn-id: http://svn.automattic.com/wordpress/trunk@17684 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8a0d83bebe
commit
5f29ef7e7b
|
@ -310,6 +310,8 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||||
if ( empty( $posts ) )
|
if ( empty( $posts ) )
|
||||||
$posts = $wp_query->posts;
|
$posts = $wp_query->posts;
|
||||||
|
|
||||||
|
add_filter( 'the_title', 'esc_html' );
|
||||||
|
|
||||||
if ( $this->hierarchical_display ) {
|
if ( $this->hierarchical_display ) {
|
||||||
$this->_display_rows_hierarchical( $posts, $this->get_pagenum(), $per_page );
|
$this->_display_rows_hierarchical( $posts, $this->get_pagenum(), $per_page );
|
||||||
} else {
|
} else {
|
||||||
|
@ -320,8 +322,6 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||||
function _display_rows( $posts ) {
|
function _display_rows( $posts ) {
|
||||||
global $post, $mode;
|
global $post, $mode;
|
||||||
|
|
||||||
add_filter( 'the_title', 'esc_html' );
|
|
||||||
|
|
||||||
// Create array of post IDs.
|
// Create array of post IDs.
|
||||||
$post_ids = array();
|
$post_ids = array();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue