Created
September 3, 2015 13:50
-
-
Save babelpuntocl/102c6afefb3d2c0d9ca6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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