Display Custom Taxonomy Name…?
-
I have created a custom post type and a custom taxonomy to go with it.
How do i go about displaying the name of the custom taxonomy?
So i have a post from the custom post type and its assigned to one of the taxonomy, when its showing its content, can it also so the taxonomy name, like it would the post title name, or content?
Could it appear within the following query at all?
<?php query_posts( array( 'post_type' => 'film','posts_per_page' => '5' ) ); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <ul id="archive-right"> <li><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'empty' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a> </li> </ul><!--.video-holder--> <?php endwhile; endif; wp_reset_query(); ?>Thanks for any help 🙂
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Display Custom Taxonomy Name…?’ is closed to new replies.