Skip to content

Instantly share code, notes, and snippets.

@gedex
Last active August 29, 2017 09:42
Show Gist options
  • Save gedex/d3417c4ffca36854b44e381dc49779f3 to your computer and use it in GitHub Desktop.
Save gedex/d3417c4ffca36854b44e381dc49779f3 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'post_class', function( $classes, $class = '', $post_id = '' ) {
$product = wc_get_product( $post_id );
if ( ! $product ) {
return $classes;
}
if ( class_exists( 'WC_Pre_Orders_Product' ) && WC_Pre_Orders_Product::product_can_be_pre_ordered( $product ) ) {
$classes[] = 'pre-order';
}
return $classes;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment