Last active
August 29, 2015 14:21
-
-
Save neltseng/cf56176f0289a414b7a7 to your computer and use it in GitHub Desktop.
將 WooCommerce 內建的評論功能取消
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('woocommerce_product_tabs', 'cwp_custom_tab', 98); | |
function cwp_custom_tab($tabs) { | |
unset($tabs['reviews']); | |
return $tabs; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment