我已使用以下命令将产品摘要移动到单个产品页面上:
add_action( 'woocommerce_single_product_summary', 'custom_the_content', 35 );
function custom_the_content() {
echo the_content();
}
现在我需要将内容包装在div中,所以我尝试了
echo '<div class="mydiv">' . the_content() . '</div>';
但这会导致内容没有被 div 包裹,而是 div 是空的,只是添加到 html 中,内容如下。如何将内容包装到我的 div 中?
30秒到达战场