Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Created August 7, 2020 06:30
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/2ba0eb2d5b63377217d9ab8ef9fd7427 to your computer and use it in GitHub Desktop.
Save DxDiagDx/2ba0eb2d5b63377217d9ab8ef9fd7427 to your computer and use it in GitHub Desktop.
WOO: условие вывода для отельной категории
add_action( 'woocommerce_after_shop_loop_item', 'bbloomer_loop_per_product' );
function bbloomer_loop_per_product() {
if ( has_term( 'chairs', 'product_cat' ) ) {
echo 'Great chairs!';
} elseif ( has_term( 'tables', 'product_cat' ) ) {
echo 'Awesome tables!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment