Automattic\WooCommerce\Internal\StockNotifications
Config::get_unverified_deletion_days_threshold
How long to keep pending notifications before deleting them (in days).
Method of the class: Config{}
No Hooks.
Returns
Int.
Usage
$result = Config::get_unverified_deletion_days_threshold(): int;
Config::get_unverified_deletion_days_threshold() Config::get unverified deletion days threshold code WC 10.3.6
public static function get_unverified_deletion_days_threshold(): int {
return absint(
get_option(
'woocommerce_customer_stock_notifications_unverified_deletions_days_threshold',
0
)
);
}