Remove dead code from WP_Query::lazyload_term_meta().

Built from https://develop.svn.wordpress.org/trunk@35111


git-svn-id: http://core.svn.wordpress.org/trunk@35076 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Boone Gorges 2015-10-13 02:36:25 +00:00
parent 2c12662eff
commit 07b7e7b3c7
2 changed files with 1 additions and 5 deletions

View File

@ -4854,10 +4854,6 @@ class WP_Query {
$posts[] = $post; $posts[] = $post;
} }
} }
$_p = array();
foreach ( $posts as $post ) {
$_p[] = $post->ID;
}
if ( ! empty( $posts ) ) { if ( ! empty( $posts ) ) {
// Fetch cached term_ids for each post. Keyed by term_id for faster lookup. // Fetch cached term_ids for each post. Keyed by term_id for faster lookup.

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-35110'; $wp_version = '4.4-alpha-35111';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.