<?php
// Name Of Custome Taxonomy (timeline_categories)
$terms = get_the_terms( $post->ID , 'timeline_categories' );
foreach ( $terms as $term ) {
echo $term->name;
}
?>
Display Custom Taxonomy Like The Category For Custom Post Type
1 Response
Write a comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.