Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Last active November 21, 2023 09:13
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 plugin-republic/a44dc1845bae5d672b36c7a05056698a to your computer and use it in GitHub Desktop.
Save plugin-republic/a44dc1845bae5d672b36c7a05056698a to your computer and use it in GitHub Desktop.
<?php
function prefix_filter_single_product_classes( $classes, $item ) {
$classes[] = 'my-new-class';
return $classes;
}
add_filter( 'pewc_filter_single_product_classes', 'prefix_filter_single_product_classes', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment