Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active May 17, 2022 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/d4ca7524ee18d6da71de54436cd44fbd to your computer and use it in GitHub Desktop.
Save braddalton/d4ca7524ee18d6da71de54436cd44fbd to your computer and use it in GitHub Desktop.
Remove Current Single Product From WooCommerce Shortcode Products https://wpsites.net/?p=109648
add_filter( 'woocommerce_shortcode_products_query', 'woocommerce_shortcode_products_remove_current_product' );
function woocommerce_shortcode_products_remove_current_product( $args ) {
$args['post__not_in'] = array( get_the_ID() );
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment