woof_counter_method
woof_counter_method
Позволяет изменить метод подсчёта количества товаров в категориях. По умолчанию используется стандартный SQL-подсчёт. Верните true для энергосберегающего режима.
Parameters
$saving_memory (bool) — false по умолчанию
Source File
classes/counter.php
Code Example
add_filter('woof_counter_method', function($saving_memory) {
// Enable memory-saving counter mode (may be less accurate but faster)
return true;
});
Usage Notes
- Add this code to your theme's
functions.phpfile or a custom plugin. - The hook is applied during the filtering process — changes take effect immediately.
- Always return the expected value type from the callback function.