-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocial.php
56 lines (49 loc) · 2.94 KB
/
social.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!-- Social -->
<?php
if (isset($theme_options['theme_social_disable'])) return;
$social_icon_url = plugins_url('newsletter') . '/emails/themes/default/images';
?>
<table cellpadding="5" align="center">
<tr>
<?php if (!empty($theme_options['theme_facebook'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_facebook'] ?>"><img src="<?php echo $social_icon_url ?>/facebook.png"><br>Facebook</a>
</td>
<?php } ?>
<?php if (!empty($theme_options['theme_twitter'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_twitter'] ?>"><img src="<?php echo $social_icon_url ?>/twitter.png"><br>Twitter</a>
</td>
<?php } ?>
<?php if (!empty($theme_options['theme_googleplus'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_googleplus'] ?>"><img src="<?php echo $social_icon_url ?>/googleplus.png"><br>Google+</a>
</td>
<?php } ?>
<?php if (!empty($theme_options['theme_pinterest'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_pinterest'] ?>"><img src="<?php echo $social_icon_url ?>/pinterest.png"><br>Pinterest</a>
</td>
<?php } ?>
<?php if (!empty($theme_options['theme_linkedin'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_linkedin'] ?>"><img src="<?php echo $social_icon_url ?>/linkedin.png"><br>LinkedIn</a>
</td>
<?php } ?>
<?php if (!empty($theme_options['theme_tumblr'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_tumblr'] ?>"><img src="<?php echo $social_icon_url ?>/tumblr.png"><br>Tumblr</a>
</td>
<?php } ?>
<?php if (!empty($theme_options['theme_youtube'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_youtube'] ?>"><img src="<?php echo $social_icon_url ?>/youtube.png"><br>Youtube</a>
</td>
<?php } ?>
<?php if (!empty($theme_options['theme_soundcloud'])) { ?>
<td style="text-align: center; vertical-align: top" align="center" valign="top">
<a href="<?php echo $theme_options['theme_soundcloud'] ?>"><img src="<?php echo $social_icon_url ?>/soundcloud.png"><br>SoundCloud</a>
</td>
<?php } ?>
</tr>
</table>