php [WooCommerce Core]根据类别删除产品内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [WooCommerce Core]根据类别删除产品内容相关的知识,希望对你有一定的参考价值。


add_action( 'wp', 'remove_product_content' );
function remove_product_content() {
	// If a product in the 'Cookware' category is being viewed...
	if ( is_product() && has_term( 'Cookware', 'product_cat' ) ) {
		//... Remove the images
		remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
		// For a full list of what can be removed please see woocommerce-hooks.php
	}

以上是关于php [WooCommerce Core]根据类别删除产品内容的主要内容,如果未能解决你的问题,请参考以下文章

php [WooCommerce Core]根据送货国家/地区添加附加费

php [WooCommerce Core]根据送货国家/地区添加附加费

php [WooCommerce Core]根据送货国家/地区添加附加费

php [WooCommerce Core]查询WooCommerce是否被激活

php [WooCommerce Core]查询WooCommerce是否被激活

php [WooCommerce Core]查询WooCommerce是否被激活