Support

Account

Home Forums Front-end Issues Pull taxonomy name etc. through repeater Reply To: Pull taxonomy name etc. through repeater

  • Hi!

    If you have the ID for the term, you could do this to get the name of the term:

    $termName = get_term( $termID )->name;

    The function get_term(); returns an object for the term.