我正在使用WordPress和WooCommerce创建我的新网站。我想在顺序细节中显示简短描述。
我找到了此代码:
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 5);
,但这向我展示了家里的描述。
有没有办法以订单详细信息显示它?
可以用钩在woocommerce_order_item_name
滤镜中的自定义Unction完成,这样:
add_filter( 'woocommerce_order_item_name', 'add_single_excerpt_to_order_item', 10, 3 );
function add_single_excerpt_to_order_item( $item_name, $item, $is_visible ){
$product_id = $item->get_product_id(); // Get the product Id
$excerpt = get_the_excerpt( $product_id ); // Get the short description
return $item_name . '<br><p class="item-description">' . $excerpt ; '</p>';
}
此代码在您的活动子主题(或主题)或任何插件文件中的function.php文件中。
测试并起作用。它将在项目名称下方的"订单"项目中显示简短说明。