-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubscribe.php
25 lines (25 loc) · 1.17 KB
/
subscribe.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="subscribe">
<?php if ($traction->followDisable() != 'true') { ?>
<h5><?php _e('Subscribe', 'traction') ?></h5>
<ul>
<?php if ($traction->facebookToggle() == 'true') { ?>
<li>
<a href="<?php echo $traction->facebook(); ?>"><img src="<?php bloginfo('template_url'); ?>/images/flw-facebook.png" alt="<?php _e('Facebook', 'traction') ?>"/></a>
</li>
<?php } ?>
<?php if ($traction->flickrToggle() == 'true') { ?>
<li>
<a href="<?php echo $traction->flickr(); ?>"><img src="<?php bloginfo('template_url'); ?>/images/flw-flickr.png" alt="<?php _e('Flickr', 'traction') ?>"/></a>
</li>
<?php } ?>
<?php if ($traction->twitterToggle() == 'true') { ?>
<li>
<a href="http://twitter.com/<?php echo $traction->twitter(); ?>"><img src="<?php bloginfo('template_url'); ?>/images/flw-twitter.png" alt="<?php _e('Twitter', 'traction') ?>"/></a>
</li>
<?php } ?>
<li>
<a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('template_url'); ?>/images/flw-rss.png" alt="<?php _e('RSS Feed', 'traction') ?>"/></a>
</li>
</ul>
<?php } ?>
</div>