Coding Standards: Rename abbreviated variables in WP_Query.

Renames the locally scoped references to `WP_Query::$query_vars` from `$q`/`$qv` to `$query_vars` for clarity per the coding standards' [https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#naming-conventions naming conventions]:

> Don’t abbreviate variable names unnecessarily; let the code be unambiguous and self-documenting.

See #63168.

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


git-svn-id: http://core.svn.wordpress.org/trunk@60263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Wilson
2025-10-13 21:39:27 +00:00
parent 896585e761
commit b0e11252f9
2 changed files with 480 additions and 480 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.9-alpha-60926';
$wp_version = '6.9-alpha-60927';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.