Skip to content

Instantly share code, notes, and snippets.

@neltseng
Last active August 29, 2015 14:21
Show Gist options
  • Save neltseng/cf56176f0289a414b7a7 to your computer and use it in GitHub Desktop.
Save neltseng/cf56176f0289a414b7a7 to your computer and use it in GitHub Desktop.
將 WooCommerce 內建的評論功能取消
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