mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Docs: is_main_query()
's _doing_it_wrong()
notice suggests using WP_Query
statically (WP_Query::is_main_query()
). Use an alternate syntax: WP_Query->is_main_query()
, to not confuse.
Props DrewAPicture, micahwave. Fixes #25680. Built from https://develop.svn.wordpress.org/trunk@34366 git-svn-id: http://core.svn.wordpress.org/trunk@34330 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
dd08157024
commit
e19e604a74
@ -730,10 +730,10 @@ function is_404() {
|
||||
function is_main_query() {
|
||||
if ( 'pre_get_posts' === current_filter() ) {
|
||||
$message = sprintf(
|
||||
/* translators: 1: pre_get_posts 2: WP_Query::is_main_query() 3: is_main_query() 4: link to codex is_main_query() page. */
|
||||
/* translators: 1: pre_get_posts 2: WP_Query->is_main_query() 3: is_main_query() 4: link to codex is_main_query() page. */
|
||||
__( 'In %1$s, use the %2$s method, not the %3$s function. See %4$s.' ),
|
||||
'<code>pre_get_posts</code>',
|
||||
'<code>WP_Query::is_main_query()</code>',
|
||||
'<code>WP_Query->is_main_query()</code>',
|
||||
'<code>is_main_query()</code>',
|
||||
__( 'https://codex.wordpress.org/Function_Reference/is_main_query' )
|
||||
);
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34365';
|
||||
$wp_version = '4.4-alpha-34366';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user