Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save babelpuntocl/102c6afefb3d2c0d9ca6 to your computer and use it in GitHub Desktop.
Save babelpuntocl/102c6afefb3d2c0d9ca6 to your computer and use it in GitHub Desktop.
<?php
global $post;
$args = array( 'taxonomy' => 'product_cat',);
$terms = wp_get_post_terms($post->ID,'product_cat', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo '<div style="direction:rtl;">';
echo $term->name;
echo '</div>';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment