如何检查 WooCommerce 过滤器挂钩参数的值?

How to check the value of a WooCommerce filter hook parameter?

在 WooCommerce 中,您有许多挂钩和过滤器。如何检查过滤器参数内部的内容?例如,我想根据某些条件取消设置一些运费。我如何检查我的 $rates 或 $package 参数中的内容?

add_filter('woocommerce_package_rates', 'wbgoe_shipping_rates', 20, 2);

function wbgoe_shipping_rates($rates, $package) {
    print_r($rates); \ How to check what's inside of $rates??
    return $rates;
}

您可以首先通过编辑 wp-config.php 文件来启用 Wordpress 调试日志,添加以下行以启用调试(如果这些已定义,请编辑值):

define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );

现在您可以在您的代码中使用 error_log() 函数,如下所示:


add_filter('woocommerce_package_rates', 'check_shipping_rates', 20, 2);

function check_shipping_rates($rates, $package) {
    error_log( print_r( $rates, true ) );
    return $rates;
}

记录错误后,它们应该出现在 wp-content/debug.log 中。您可以在文本编辑器中打开此文件。完成后,您可以禁用调试日志。

相关: