Multisite: Change WP_Network id property to an integer.

For consistency and developer sanity.

Props flixos90.
Fixes #37050.

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


git-svn-id: http://core.svn.wordpress.org/trunk@37811 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Jeremy Felt
2016-06-26 14:26:29 +00:00
parent c5d9d5cc18
commit 6f3f00ea97
27 changed files with 525 additions and 270 deletions

View File

@@ -407,22 +407,22 @@ function is_front_page() {
}
/**
* Is the query for the blog homepage?
* Determines if the query is for the blog homepage.
*
* This is the page which shows the time based blog content of your site.
* The blog homepage is the page that shows the time-based blog content of the site.
*
* Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_for_posts'.
* is_home() is dependent on the site's "Front page displays" Reading Settings 'show_on_front'
* and 'page_for_posts'.
*
* If you set a static page for the front page of your site, this function will return
* true only on the page you set as the "Posts page".
*
* @see is_front_page()
* If a static page is set for the front page of the site, this function will return true only
* on the page you set as the "Posts page".
*
* @since 1.5.0
*
* @see is_front_page()
* @global WP_Query $wp_query Global WP_Query instance.
*
* @return bool True if blog view homepage.
* @return bool True if blog view homepage, otherwise false.
*/
function is_home() {
global $wp_query;
@@ -3550,7 +3550,7 @@ class WP_Query {
*
* @since 2.0.0
*
* @param array $request The complete SQL query.
* @param string $request The complete SQL query.
* @param WP_Query &$this The WP_Query instance (passed by reference).
*/
$this->request = apply_filters_ref_array( 'posts_request', array( $this->request, &$this ) );