Skip to content

Instantly share code, notes, and snippets.

@jfarsen
Created August 9, 2017 01:41
Show Gist options
  • Save jfarsen/1d76d1c000cf3699aff94561cb58b019 to your computer and use it in GitHub Desktop.
Save jfarsen/1d76d1c000cf3699aff94561cb58b019 to your computer and use it in GitHub Desktop.
Remove WooCommerce related products
<?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