-
Notifications
You must be signed in to change notification settings - Fork 28
/
shows-artist-heading.php
20 lines (16 loc) · 1.12 KB
/
shows-artist-heading.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
// STOP! DO NOT MODIFY THIS FILE!
// If you wish to customize the output, you can safely do so by COPYING this file
// into a new folder called 'gigpress-templates' in your 'wp-content' directory
// and then making your changes there. When in place, that file will load in place of this one.
// This template displays before each group of artist shows when grouping your shows by artist.
?>
<h3 class="gigpress-artist-heading" id="artist-<?php echo $showdata['artist_id']; ?>"><?php echo $showdata['artist']; ?>
<?php if(!empty($gpo['display_subscriptions'])) : ?>
<span class="gigpress-artist-subscriptions">
<a href="<?php echo GIGPRESS_RSS; ?>&artist=<?php echo $showdata['artist_id']; ?>" title="<?php echo $showdata['artist_plain']; ?> RSS"><img src="<?php echo esc_url( GIGPRESS_PLUGIN_URL . 'images/feed-icon-12x12.png' ); ?>" alt="" /></a>
<a href="<?php echo GIGPRESS_WEBCAL . '&artist=' . $showdata['artist_id']; ?>" title="<?php echo $showdata['artist_plain']; ?> iCalendar"><img src="<?php echo esc_url( GIGPRESS_PLUGIN_URL . 'images/icalendar-icon.gif' ); ?>" alt="" /></a>
</span>
<?php endif; ?>
</h3>