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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
<?php // [share] function shareShortcode($atts, $content = null) { extract(shortcode_atts(array( 'title' => '', 'tooltip' => 'top' ), $atts)); global $post, $flatsome_opt; $permalink = get_permalink($post->ID); $featured_image = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large'); $featured_image_2 = $featured_image['0']; $post_title = rawurlencode(get_the_title($post->ID)); if($title) $title = '<span>'.$title.'</span>';
ob_start(); ?>
<div class="social-icons share-row"> <?php echo $title; ?> <?php if($flatsome_opt['social_icons']['facebook']) { ?> <a href="http://www.facebook.com/sharer.php?u=<?php echo $permalink; ?>" target="_blank" class="icon icon_facebook tip-<?php echo $tooltip ?>" title="<?php _e('Share on Facebook','flatsome'); ?>"><span class="icon-facebook"></span></a> <?php } ?> <?php if($flatsome_opt['social_icons']['twitter']) { ?> <a href="https://twitter.com/share?url=<?php echo $permalink; ?>" target="_blank" class="icon icon_twitter tip-<?php echo $tooltip ?>" title="<?php _e('Share on Twitter','flatsome'); ?>"><span class="icon-twitter"></span></a> <?php } ?> <?php if($flatsome_opt['social_icons']['email']) { ?> <a href="mailto:enteryour@addresshere.com?subject=<?php echo $post_title; ?>&body=Check%20this%20out:%20<?php echo $permalink; ?>" class="icon icon_email tip-<?php echo $tooltip ?>" title="<?php _e('Email to a Friend','flatsome'); ?>"><span class="icon-envelop"></span></a> <?php } ?> <?php if($flatsome_opt['social_icons']['pinterest']) { ?> <a href="//pinterest.com/pin/create/button/?url=<?php echo $permalink; ?>&media=<?php echo $featured_image_2; ?>&description=<?php echo $post_title; ?>" target="_blank" class="icon icon_pintrest tip-<?php echo $tooltip ?>" title="<?php _e('Pin on Pinterest','flatsome'); ?>"><span class="icon-pinterest"></span></a> <?php } ?> <?php if($flatsome_opt['social_icons']['googleplus']) { ?> <a href="//plus.google.com/share?url=<?php echo $permalink; ?>" target="_blank" class="icon icon_googleplus tip-<?php echo $tooltip ?>" title="<?php _e('Share on Google+','flatsome'); ?>"><span class="icon-google-plus"></span></a> <?php } ?> <?php if($flatsome_opt['social_icons']['vk']) { ?> <a href="//vkontakte.ru/share.php?url=<?php echo $permalink; ?>" target="_blank" class="icon icon_vk tip-<?php echo $tooltip ?>" title="<?php _e('Share on VKontakte','flatsome'); ?>"><span class="icon-vk"></span></a> <?php } ?> </div> <?php $content = ob_get_contents(); ob_end_clean(); return $content; } add_shortcode('share','shareShortcode');
// [follow] function followShortcode($atts, $content = null) { $sliderrandomid = rand(); extract(shortcode_atts(array( 'size' => 'normal', 'tooltip' => 'top', 'title' => '', 'twitter' => '', 'facebook' => '', 'pinterest' => '', 'email' => '', 'googleplus' => '', 'instagram' => '', 'rss' => '', 'linkedin' => '', 'youtube' => '', 'flickr' => '', 'vkontakte' => '' ), $atts)); ob_start(); ?>
<div class="social-icons size-<?php echo $size;?>">
<?php if($title){?> <span><?php echo $title; ?></span> <?php }?>
<?php if($facebook){?> <a href="<?php echo $facebook; ?>" target="_blank" class="icon icon_facebook tip-<?php echo $tooltip; ?>" title="<?php _e('Follow us on Facebook','flatsome') ?>"><span class="icon-facebook"></span></a> <?php }?> <?php if($twitter){?> <a href="<?php echo $twitter; ?>" target="_blank" class="icon icon_twitter tip-<?php echo $tooltip; ?>" title="<?php _e('Follow us on Twitter','flatsome') ?>"><span class="icon-twitter"></span></a> <?php }?> <?php if($email){?> <a href="mailto:<?php echo $email; ?>" target="_blank" class="icon icon_email tip-<?php echo $tooltip; ?>" title="<?php _e('Send us an email','flatsome') ?>"><span class="icon-envelop"></span></a> <?php }?> <?php if($pinterest){?> <a href="<?php echo $pinterest; ?>" target="_blank" class="icon icon_pintrest tip-<?php echo $tooltip; ?>" title="<?php _e('Follow us on Pinterest','flatsome') ?>"><span class="icon-pinterest"></span></a> <?php }?> <?php if($googleplus){?> <a href="<?php echo $googleplus; ?>" target="_blank" class="icon icon_googleplus tip-<?php echo $tooltip; ?>" title="<?php _e('Follow us on Google+','flatsome')?>"><span class="icon-google-plus"></span></a> <?php }?> <?php if($instagram){?> <a href="<?php echo $instagram; ?>" target="_blank" class="icon icon_instagram tip-<?php echo $tooltip; ?>" title="<?php _e('Follow us on Instagram','flatsome')?>"><span class="icon-instagram"></span></a> <?php }?> <?php if($rss){?> <a href="<?php echo $rss; ?>" target="_blank" class="icon icon_rss tip-<?php echo $tooltip; ?>" title="<?php _e('Subscribe to RSS','flatsome') ?>"><span class="icon-feed"></span></a> <?php }?> <?php if($linkedin){?> <a href="<?php echo $linkedin; ?>" target="_blank" class="icon icon_linkedin tip-<?php echo $tooltip; ?>" title="<?php _e('LinkedIn','flatsome') ?>"><span class="icon-linkedin"></span></a> <?php }?> <?php if($youtube){?> <a href="<?php echo $youtube; ?>" target="_blank" class="icon icon_youtube tip-<?php echo $tooltip; ?>" title="<?php _e('YouTube','flatsome') ?>"><span class="icon-youtube"></span></a> <?php }?> <?php if($flickr){?> <a href="<?php echo $flickr; ?>" target="_blank" class="icon icon_flickr tip-<?php echo $tooltip; ?>" title="<?php _e('Flickr','flatsome') ?>"><span class="icon-flickr"></span></a> <?php }?> <?php if($vkontakte){?> <a href="<?php echo $vkontakte; ?>" target="_blank" class="icon icon_vk tip-<?php echo $tooltip; ?>" title="<?php _e('Follow on VKontakte','flatsome') ?>"><span class="icon-vk"></span></a> <?php }?> </div>
<?php $content = ob_get_contents(); ob_end_clean(); return $content; } add_shortcode("follow", "followShortcode");
|