Support » Plugins » get_the_term_list for child of custom taxonomy

  • Is their any way to display only children of a custom taxonomy for my website. Below is the code I have which obviously just displays the same thing over and over

    <?php echo get_the_term_list( $post->ID, 'portfolio-categories', 'Services Performed: ', ', ', '' ); ?><br />
    <?php echo get_the_term_list( $post->ID, 'portfolio-categories', 'Programs Used: ', ', ', '' ); ?><br />
    <?php echo get_the_term_list( $post->ID, 'portfolio-categories', 'Equipment Used: ', ', ', '' ); ?><br />

    I was wondering if it is possible to use children of my custom taxonomy to be displayed for each of these get_the_term_lists

    Thank you in advance!

  • The topic ‘get_the_term_list for child of custom taxonomy’ is closed to new replies.