以干净的方式正确覆盖 WooCommerce 函数 WC_Price() [英] Overriding properly WooCommerce function WC_Price() in a clean way

查看:40
本文介绍了以干净的方式正确覆盖 WooCommerce 函数 WC_Price()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

正确覆盖预先存在的 WooCommerce 功能的最佳方法是什么?在这种情况下,我想修改 wc_price() 函数.我不需要对它做任何疯狂的事情,我只需要在价格周围添加一个 HTML <span> 属性.

What is the best way to properly override a pre-existing WooCommerce function? In this case I want to modify the wc_price() function. I don't need to do anything crazy with it, I literally just need to add an HTML <span> attribute around the price.

我知道代码如下:

function wc_price( $price, $args = array() ) {
    extract( apply_filters( 'wc_price_args', wp_parse_args( $args, array(
      'ex_tax_label'       => false,
      'currency'           => '',
      'decimal_separator'  => wc_get_price_decimal_separator(),
      'thousand_separator' => wc_get_price_thousand_separator(),
      'decimals'           => wc_get_price_decimals(),
      'price_format'       => get_woocommerce_price_format(),
    ) ) ) );

    $negative        = $price < 0;
    $price           = apply_filters( 'raw_woocommerce_price', floatval( $negative ? $price * -1 : $price ) );
    $price           = apply_filters( 'formatted_woocommerce_price', number_format( $price, $decimals, $decimal_separator, $thousand_separator ), $price, $decimals, $decimal_separator, $thousand_separator );

    if ( apply_filters( 'woocommerce_price_trim_zeros', false ) && $decimals > 0 ) {
       $price = wc_trim_zeros( $price );
    }

    $formatted_price = ( $negative ? '-' : '' ) . sprintf( $price_format, '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $currency ) . '</span>', $price );
    $return          = '<span class="woocommerce-Price-amount amount">' . $formatted_price . '</span>';

    if ( $ex_tax_label && wc_tax_enabled() ) {
       $return .= ' <small class="woocommerce-Price-taxLabel tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>';
    }

    return apply_filters( 'wc_price', $return, $price, $args );
}

我只想把它改成:

function wc_price( $price, $args = array() ) {
    extract( apply_filters( 'wc_price_args', wp_parse_args( $args, array(
      'ex_tax_label'       => false,
      'currency'           => '',
      'decimal_separator'  => wc_get_price_decimal_separator(),
      'thousand_separator' => wc_get_price_thousand_separator(),
      'decimals'           => wc_get_price_decimals(),
      'price_format'       => get_woocommerce_price_format(),
    ) ) ) );

    $negative        = $price < 0;
    $price           = apply_filters( 'raw_woocommerce_price', floatval( $negative ? $price * -1 : $price ) );
    $price           = apply_filters( 'formatted_woocommerce_price', number_format( $price, $decimals, $decimal_separator, $thousand_separator ), $price, $decimals, $decimal_separator, $thousand_separator );

    if ( apply_filters( 'woocommerce_price_trim_zeros', false ) && $decimals > 0 ) {
       $price = wc_trim_zeros( $price );
    }

    $formatted_price = ( $negative ? '-' : '' ) . sprintf( $price_format, '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $currency ) . '</span>', <span class="custom-prc"> . $price . </span> );
    $return          = '<span class="woocommerce-Price-amount amount">' . $formatted_price . '</span>';

    if ( $ex_tax_label && wc_tax_enabled() ) {
       $return .= ' <small class="woocommerce-Price-taxLabel tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>';
    }

    return apply_filters( 'wc_price', $return, $price, $args );
}

任何帮助都将不胜感激!谢谢!

Any help at all would be greatly appreciated! Thanks!

推荐答案

添加你的自定义 html 标签 0000</span> 围绕价格,您将需要以这种方式在 formatted_woocommerce_price 过滤器钩子中使用钩子函数:

To add your custom html tag <span class="custom-prc">0000</span> around the price, you will need to use a hooked function in formatted_woocommerce_price filter hook this way:

add_filter( 'formatted_woocommerce_price', 'span_custom_prc', 10, 5 );
function span_custom_prc( $number_format, $price, $decimals, $decimal_separator, $thousand_separator){
    return '<span class="custom-prc">'.$number_format.'</span>';
}

代码位于活动子主题(或主题)的 function.php 文件或任何插件文件中.

该代码已经过测试并适用于 WooCommerce 3+

The code is tested and works with WooCommerce 3+

然后你会得到这个 html 输出(例如 42,00 euros):

Then you will get this html output (for example with 42,00 euros):

<span class="price">
    <span class="woocommerce-Price-amount amount">
        <span class="custom-prc">42,03</span>
        "&nbsp;"
        <span class="woocommerce-Price-currencySymbol">€</span>
    </span>
</span>

这篇关于以干净的方式正确覆盖 WooCommerce 函数 WC_Price()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆