Created
August 9, 2017 01:41
-
-
Save jfarsen/1d76d1c000cf3699aff94561cb58b019 to your computer and use it in GitHub Desktop.
Remove WooCommerce related products
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
<?php | |
/* | |
* wc_remove_related_products | |
* | |
* Clear the query arguments for related products so none show. | |
* Add this code to your theme functions.php file. | |
*/ | |
function wc_remove_related_products( $args ) { | |
return array(); | |
} | |
add_filter('woocommerce_related_products_args','wc_remove_related_products', 10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment