php WooCommerce:向产品卡添加详细信息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce:向产品卡添加详细信息相关的知识,希望对你有一定的参考价值。

// Add attributes (example is course length) to product cards
add_action( 'woocommerce_shop_loop_item_title', 'add_attributes', 20 );
function add_attributes() {
	$product = wc_get_product();
	$length = $product->get_attribute( 'course-length' );
	if( $length ) {
		echo '<div class="course-length">Course: ' . $length . '</div>';
	}
}

// Add short description to product cards
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 5);

以上是关于php WooCommerce:向产品卡添加详细信息的主要内容,如果未能解决你的问题,请参考以下文章

php 通过函数文件向woocommerce产品添加acf字段

php 通过函数文件向woocommerce产品添加acf字段

php 用于向woocommerce产品属性添加自定义复选框以隐藏购物车按钮的功能

在 Woocommerce 的单个产品页面中添加产品备注字段

php WooCommerce |在摘要下移动产品选项卡

php WooCommerce |在摘要下移动产品选项卡