Files
wc-bootstrap/templates/single-product/title.html.twig

16 lines
301 B
Twig
Raw Normal View History

{#
# Product Title (Bootstrap 5 Override)
#
# Expected context:
# product - WC_Product object (or uses the_title())
#
# WooCommerce PHP equivalent: single-product/title.php
#
# @package WcBootstrap
# @since 0.1.0
#}
<h1 class="product_title entry-title mb-2">
{{ the_title() }}
</h1>