Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2013
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1.     <?php
  2.     global $post;
  3.     $terms = wp_get_post_terms( $post->ID, 'product_cat' );
  4.     foreach ( $terms as $term ) $categories[] = $term->slug;
  5.      
  6.     if ( in_array( 'z', $categories ) ) {
  7.      
  8.       Insert_extra_HTML/CSS/Shortcode_Here;
  9.      
  10.     } else {
  11.      
  12.       do_nothing_extra;
  13.     }
  14.     ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement