I created the custom post type with the name "portfolio" and also created taxonomies.
but when I loop the custom post at the page "portfolio-page.php"
it's only appear the_content() without taxonomies.
I used these codes
---
The loop which taxonomies didn't appear
<!--?php<br />
$args = array( 'post_type' =--> 'portfolio', 'posts_per_page' => 10 );<br />
$loop = new WP_Query( $args );<br />
while ( $loop->have_posts() ) : $loop->the_post();<br />
the_title();<br />
echo '<div class="entry-content">';<br />
the_content();<br />
echo '</div>';<br />
endwhile;<br />
?>
then I try this one again , but it doesn't appear
<!--?php the_terms( $post--->ID, 'my_taxonomy_slug', 'Portfolio Category : ', ' <span style="color:#000">/</span> ', '' ); ?>
I don't know what's wrong with me . if someone would guide me ,, thanks in advance
The blog I need help with is twotwotgi.wordpress.com.