Created
August 31, 2016 19:33
-
-
Save JayWood/f1773b7226fff8dc3e544d6c05591b1e to your computer and use it in GitHub Desktop.
Woocommerce Product Class
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 | |
function fb_1398591523488596( $classes, $class, $post_id ) { | |
if ( 'product' == get_post_type( $post_id ) ) { | |
$classes[] = "my-amazing-product-class"; | |
} | |
return $classes; | |
} | |
add_filter( 'post_class', 'fb_1398591523488596', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Working great!! Thanks for sharing.