diff --git a/core/A2_Optimized_Optimizations.php b/core/A2_Optimized_Optimizations.php index 54c6552..faa1b48 100644 --- a/core/A2_Optimized_Optimizations.php +++ b/core/A2_Optimized_Optimizations.php @@ -852,7 +852,7 @@ public function get_best_practices() { ], 'post_revisions' => [ 'title' => 'Post Revisions', - 'description' => 'The number of post revisions should be less than than 10 for most sites. This could slow down page loads.', + 'description' => 'The number of post revisions should be less than than 100 for most sites. This could slow down page loads.', 'status' => $this->is_active('post_revisions', false), ], 'show_on_front' => [ @@ -1291,11 +1291,11 @@ public function is_active($optimization, $value_only = true) { case 'post_revisions': if (defined('WP_POST_REVISIONS') && WP_POST_REVISIONS == true) { // post revisions are active - if (is_numeric(WP_POST_REVISIONS) && WP_POST_REVISIONS <= 10) { - $result['current'] = 'Post revisions are enabled, but less than 10.'; + if (is_numeric(WP_POST_REVISIONS) && WP_POST_REVISIONS <= 100) { + $result['current'] = 'Post revisions are enabled, but less than 100.'; $result['value'] = true; } else { - $result['current'] = 'Post revisions are enabled with a limit higher than 10.'; + $result['current'] = 'Post revisions are enabled with a limit higher than 100.'; $result['value'] = false; } } else {