WooCommerce : Producto cambiar el titulo de H2 a H3
Fecha Publicación:
28 de Marzo de 2023
Fecha Modificación:
26 de Abril de 2024
function woocommerce_template_loop_category_title( $category ) {
?>
<h3 class="woocommerce-loop-category__title">
<?php
echo esc_html( $category->name );
if ( $category->count > 0 ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo apply_filters( 'woocommerce_subcategory_count_html', ' <mark class="count">(' . esc_html( $category->count ) . ')</mark>', $category );
}
?>
</h3>
<?php
}
Articulo : 1130 - Veces Leidas