PluginProbe
Property Hive / 2.3.1
Property Hive v2.3.1
2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 1.4.61 All 261 releases
← All changes | includes/ph-update-functions.php +2 -0 2.2.22.3.1 View file →
@@ -23,8 +23,9 @@
23 23 $args = array(
24 24 'post_type' => 'property',
25 25 'fields' => 'ids',
26 26 'post_status' => 'publish',
27 + // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query -- This maintenance backfill must select records missing the destination metadata; removing the predicate would overwrite existing values.
27 28 'meta_query' => array(
28 29 array(
29 30 'key' => '_on_market',
30 31 'value' => 'yes'
@@ -34,8 +35,9 @@
34 35 'compare' => 'NOT EXISTS'
35 36 )
36 37 ),
37 38 'nopaging' => true,
39 + // phpcs:ignore WordPressVIPMinimum.Performance.WPQueryParams.SuppressFilters_suppress_filters -- Maintenance must cover every language; front-end language filters would omit records from this backfill.
38 40 'suppress_filters' => true,
39 41 );
40 42 $property_query = new WP_Query($args);
41 43