Automattic\WooCommerce\Internal\StockNotifications
Config::get_unverified_deletion_days_threshold
How long to keep pending notifications before deleting them (in days).
Метод класса: Config{}
Хуков нет.
Возвращает
int.
Использование
$result = Config::get_unverified_deletion_days_threshold(): int;
Код Config::get_unverified_deletion_days_threshold() Config::get unverified deletion days threshold WC 10.7.0
public static function get_unverified_deletion_days_threshold(): int {
return absint(
get_option(
'woocommerce_customer_stock_notifications_unverified_deletions_days_threshold',
0
)
);
}