woocommerce_api_products_bulk_response

woocommerce_api_products_bulk_response

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.9.3

apply_filters('woocommerce_api_products_bulk_response') is found 2 times:

  • /includes/legacy/api/v2/class-wc-api-products.php line 2307

    Warning: Undefined array key 2312 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    2303
    2304
    2305
    2306
    2307
    2308
    2309
    2310
    2311
    2312
                        }
                    }
                }
     
                return array( 'products' => apply_filters( 'woocommerce_api_products_bulk_response', $products, $this ) );
            } catch ( WC_API_Exception $e ) {
                return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );
            }
        }
    }
  • /includes/legacy/api/v3/class-wc-api-products.php line 3099
    3095
    3096
    3097
    3098
    3099
    3100
    3101
    3102
    3103
    3104
    3105
                    }
                }
            }
     
            return array( 'products' => apply_filters( 'woocommerce_api_products_bulk_response', $products, $this ) );
        } catch ( WC_API_Exception $e ) {
            return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );
        }
    }
     
    /**