php - name - Anulando correctamente la función de WooCommerce WC_Price() de una manera limpia
get_the_tags wp (1)
¿Cuál es la mejor manera de anular correctamente una función WooCommerce preexistente? En este caso, quiero modificar la función wc_price()
. No necesito hacer nada loco con eso, literalmente solo necesito agregar un atributo HTML <span>
alrededor del precio.
Sé que el código es el siguiente:
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 );
}
Todo lo que quiero hacer es cambiarlo a:
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 );
}
¡Cualquier ayuda sería muy apreciada! ¡Gracias!
Para agregar su etiqueta html personalizada <span class="custom-prc">0000</span>
alrededor del precio, tendrá que utilizar una función enganchada en el gancho de filtro de formato_woocommerce_price de esta manera:
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>'';
}
El código va en el archivo function.php de su tema hijo activo (o tema) o también en cualquier archivo de complemento.
El código está probado y funciona con WooCommerce 3+
Entonces obtendrá esta salida html (por ejemplo, con 42,00 euros
):
<span class="price">
<span class="woocommerce-Price-amount amount">
<span class="custom-prc">42,03</span>
" "
<span class="woocommerce-Price-currencySymbol">€</span>
</span>
</span>