// 1. نمایش کوپنهای تاریخدار در صفحه تسویهحساب add_action('woocommerce_before_checkout_form', function () { if (!is_checkout()) return; $args = [ 'post_type' => 'shop_coupon', 'post_status' => 'publish', 'meta_query' => [ [ 'key' => 'date_expires', 'value' => 0, 'compare' => '>', 'type' => 'NUMERIC', ] ] ]; $coupons = get_posts($args); if (!$coupons) return; echo '