我建立了一個腳本來檢查使用者是否有已完成的訂單。如果用戶沒有已完成的訂單,它會停用付款方式「cheque」。這個腳本是有效的,但是在將其添加到我的functions.php檔案後,在瀏覽頁面時出現了嚴重的效能問題。您是否看到了一些優化的可能性或問題可能出在哪裡?
function has_bought() { // 取得所有客戶訂單 $customer_orders = get_posts( array( 'numberposts' => -1, 'meta_key' => '_customer_user', 'meta_value' => get_current_user_id(), 'post_type' => 'shop_order', // WC訂單的文章類型 'post_status' => 'wc-completed' // 僅限狀態為「completed」的訂單 ) ); // 當客戶已經有訂單時回傳“true” return count( $customer_orders ) > 0 ? true : false; } add_filter('woocommerce_available_payment_gateways', 'customize_payment_gateways'); function customize_payment_gateways($gateways) { if (!has_bought()) { if (isset($gateways['cheque'])) { // 取消「cheque」支付網關 unset($gateways['cheque']); } } return $gateways; }
不需要重複查詢以檢查客戶是否有已支付的訂單,
WC_Customer
類別中已經有一個輕量級的內建功能,使用get_is_paying_customer()
方法,該方法使用了一個專用於使用者的元資料。您可以這樣使用它,停用新客戶的「支票」付款方式:
將程式碼放入您的子主題的functions.php檔案中(或外掛程式中)。已測試並可正常運作。