-
Notifications
You must be signed in to change notification settings - Fork 1
/
subscribe.php
28 lines (27 loc) · 1.82 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
26
27
28
<!-- SUBSCRIBE -->
<div id="subscribe-large">
<ul class="subscribe-icons">
<li class="subscribe-label"><?php _e('SUBSCRIBE :', 'stf'); ?></li>
<?php if( stf_get_setting( 'stf_rss_url' ) ) { ?>
<li class="subscribe-icon rss">
<a href="<?php echo stf_get_setting( 'stf_rss_url', get_bloginfo('rss2_url') ); ?>" target="_blank" rel="nofollow"><img src="<?php bloginfo('template_directory'); ?>/app/images/icons/rss.png" class="tooltip" title="<?php _e('Subscribe to RSS feed!'); ?>" alt="RSS" /></a>
</li>
<?php } ?>
<?php if( stf_get_setting( 'stf_twitter_username' ) ) { ?>
<li class="subscribe-icon twitter">
<a href="http://twitter.com/<?php echo stf_get_setting( 'stf_twitter_username' ); ?>" target="_blank" rel="nofollow"><img src="<?php bloginfo('template_directory'); ?>/app/images/icons/twitter.png" class="tooltip" title="<?php printf( __( 'Follow %s on Twitter!', 'stf' ), '@' . stf_get_setting( 'stf_twitter_username' ) ); ?>" alt="Twitter" /></a>
</li>
<?php } ?>
<?php if( stf_get_setting( 'stf_facebook_URL' ) ) { ?>
<li class="subscribe-icon facebook">
<a href="<?php echo stf_get_setting( 'stf_facebook_URL' ); ?>" target="_blank" rel="nofollow"><img src="<?php bloginfo('template_directory'); ?>/app/images/icons/facebook.png" class="tooltip" title="<?php printf( __( 'Like %s on Facebook!', 'stf' ), get_bloginfo('name') ); ?>" alt="Facebook" /></a>
</li>
<?php } ?>
<?php if( stf_get_setting( 'stf_subscribe_URL' ) ) { ?>
<li class="subscribe-icon email">
<a href="<?php echo stf_get_setting( 'stf_subscribe_URL' ); ?>" target="_blank" rel="nofollow"><img src="<?php bloginfo('template_directory'); ?>/app/images/icons/mail.png" class="tooltip" title="<?php _e('Subscribe using email..'); ?>" alt="e-mail" /></a>
</li>
<?php } ?>
</ul>
</div>
<!-- /SUBSCRIBE -->