提问人:Jituu 提问时间:11/17/2023 最后编辑:LoicTheAztecJituu 更新时间:11/18/2023 访问量:27
在 div 中换行文本 [已关闭]
Wrap text in a div [closed]
问:
我使用代码在前端打印了一些类别:
add_action( 'woocommerce_before_shop_loop_item_title', 'wtwh_show_all_subcats', 2 );
function wtwh_show_all_subcats() {
global $product;
$cats = get_the_terms( $product->get_id(), 'product_cat' );
if ( empty( $cats ) ) return;
echo join(', ', wp_list_pluck( $cats, 'name' ) );
}
remove_action( 'woocommerce_before_subcategory_title', 'woocommerce_subcategory_thumbnail', 10 );
但是,当我编辑代码以将其包装在 div 中时,它显示错误。
有人可以帮我找到正确的位置以将输出包装在 div 中吗?
答: 暂无答案
评论
echo '<div>' . join(...) . '</div>';
...?