• Resolved Kai

    (@kaichi)


    Hello,
    Is possible to show categories under title or under time?

    Thank you!

Viewing 1 replies (of 1 total)
  • Plugin Contributor motopress

    (@motopress)

    Hi @kaichi,
    Yes, you may use the code below to output categories of current event:

    <?php
    $mp_event_cat_terms = get_the_terms( $item['post'], 'mp-event_category' );
    if( is_array( $mp_event_cat_terms ) ){
    	foreach( $mp_event_cat_terms as $mp_event_cat_term ){
    		echo '<li><a href="'. get_term_link( $mp_event_cat_term->term_id, $mp_event_cat_term->taxonomy ) .'">'. $mp_event_cat_term->name .'</a></li> ';
    	}
    }
      ?>
Viewing 1 replies (of 1 total)

The topic ‘Showing categories under title’ is closed to new replies.