Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Created August 4, 2020 19:55
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 DxDiagDx/42cb81c6fbc46919486b6f2399fa62d0 to your computer and use it in GitHub Desktop.
Save DxDiagDx/42cb81c6fbc46919486b6f2399fa62d0 to your computer and use it in GitHub Desktop.
Woo: условие вывода для товаров со скидкой
add_action( 'woocommerce_after_single_product_summary', 'bbloomer_single_on_sale' );
function bbloomer_single_on_sale() {
if ( $product->is_on_sale() ) {
// do something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment