mage-eventpress/templates/single/organizer.php

17 lines
527 B
PHP
Raw Normal View History

2021-11-02 03:28:50 -04:00
<p>
2023-08-29 02:17:31 -04:00
<?php
echo mep_get_option('mep_by_text', 'label_setting_sec', __('By:', 'mage-eventpress'));
2023-08-07 01:37:33 -04:00
$count_term = sizeof($org);
$count = 1;
2023-08-29 02:17:31 -04:00
if ($count_term > 1) {
foreach ($org as $_org) {
?>
<a href="<?php echo get_term_link($_org->term_id, 'mep_org'); ?>"><?php echo esc_html($_org->name);if ($count_term == $count) {} else {echo ', ';} ?></a>
2023-08-07 01:37:33 -04:00
<?php
2022-02-03 05:11:51 -05:00
$count++;
2023-08-29 02:17:31 -04:00
}
} else {
?>
<a href="<?php echo get_term_link($org[0]->term_id, 'mep_org'); ?>"><?php echo esc_html($org[0]->name); ?></a>
<?php }?>
2021-10-31 07:01:04 -04:00
</p>