admin管理员组

文章数量:1415484

I'm trying to show the WordPress default text area on a Woocommerce Single Product Page but can't find the appropriate hook to add to the template? I would have thought it would've been well documented but I can't see anything online about it.

Code

Where's at the moment I'm using the woocomerce_template_single_excerpt I'm trying to find the full description (WordPress Editor) hook

<div class="col-8">
    <section class="section">
        <?php
        woocommerce_template_single_title();
        woocommerce_template_single_excerpt();
        woocommerce_template_single_price(); 
        woocommerce_template_single_add_to_cart();
        ?>
    </section>
</div>

本文标签: hooksShowing the WordPress standard text area on a Woocommerce Single Product Page