Skip to content

Instantly share code, notes, and snippets.

@rashmimalpande
Last active November 28, 2017 09:31
Show Gist options
  • Save rashmimalpande/b3a8ab20c787f7f97f61e23c884227d6 to your computer and use it in GitHub Desktop.
Save rashmimalpande/b3a8ab20c787f7f97f61e23c884227d6 to your computer and use it in GitHub Desktop.
function show_content_after_add_to_cart() {
global $post;
$product_id = $post->ID;
$tags = get_the_terms( $product_id, 'product_tag' );
if( empty( $tags ) ) {
return;
}
foreach( $tags as $tag ) {
if( 'shirts' == $tag->slug ) {
echo "<img src='safe_checkout.png' >";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment