这确实是您需要为其创建特定页面模板的内容。只是CSS不会起作用,因为您需要在函数中添加函数。php文件(在您的主题或child-theme 文件夹),以显示摘录。
您可以这样做:
add_action( \'wp\' , \'add_excerpt\', 20);
function add_excerpt() {
if ( is_shop() || is_product_category() || is_product_tag() ) {
add_action( \'woocommerce_after_shop_loop_item\', \'woocommerce_template_single_excerpt\', 5);
}
}
这将把摘录添加到产品列表中。