From ace2e0ba1f0d9ff45350d6ae1f75d7bd77962e64 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 19 Aug 2014 07:27:51 +0000 Subject: [PATCH] Correct 'no_found_rows' parameter description. see #25367. git-svn-id: https://develop.svn.wordpress.org/trunk@29538 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/query.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/query.php b/src/wp-includes/query.php index 1ac8ee00ff..72cb9b8e3e 100644 --- a/src/wp-includes/query.php +++ b/src/wp-includes/query.php @@ -1489,8 +1489,8 @@ class WP_Query { * @type int $monthnum The two-digit month. Default empty. Accepts numbers 1-12. * @type string $name Post slug. * @type bool $nopaging Show all posts (true) or paginate (false). Default false. - * @type bool $no_found_rows Whether to count the total rows found. Disabling can improve - * performance. Default true. + * @type bool $no_found_rows Whether to skip counting the total rows found. Enabling can improve + * performance. Default false. * @type int $offset The number of posts to offset before retrieval. * @type string $order Designates ascending or descending order of posts. Default 'DESC'. * Accepts 'ASC', 'DESC'.