mage-eventpress/templates/template-prts/organizer.php

9 lines
298 B
PHP
Raw Normal View History

2018-07-02 05:44:24 -04:00
<?php
add_action('mep_event_organizer','mep_ev_org');
function mep_ev_org(){
global $author_terms;
2018-10-31 05:30:00 -04:00
if($author_terms){ ?><p> <?php _e('By:','mepevent'); ?> <a href="<?php echo get_term_link( $author_terms[0]->term_id, 'mep_org' ); ?>"><?php echo $author_terms[0]->name; ?></a></p><?php }
2018-07-02 05:44:24 -04:00
}