-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocial-button.php
11 lines (11 loc) · 1.12 KB
/
social-button.php
1
2
3
4
5
6
7
8
9
10
11
<div class="col-lg-12 soc-icon text-center">
<?php
$url = ((!empty($_SERVER['HTTPS'])) ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$soc_text= $info_post['title'];
?>
<p class="text-center">
<a href="https://vk.com/share.php?url=<?php echo $url;?>&title=<?php echo $soc_text;?>&"><img src="<?php echo INDEX;?>/images/config/vk-icon.png"class="vk-icon-post" alt="Иконка ВКонтакте"></a>
<a href="https://connect.ok.ru/offer?url=<?php echo $url?>&title=<?php echo $soc_text?>&"><img src="<?php echo INDEX;?>/images/config/ok-icon.png" class="fb-icon" alt="Иконка Одноклассники"></a>
<a href="https://t.me/share/url?url=<?php echo $url?>&text=<?php echo $soc_text?>&"><img src="<?php echo INDEX;?>/images/config/tg-icon.png" class="tg-icon" alt="Иконка Телеграм"></a>
<a href="https://twitter.com/intent/tweet?text=<?php echo $soc_text?>&url=<?php echo $url?>&"><img src="<?php echo INDEX;?>/images/config/tw-icon.png" class="tw-icon" alt="Иконка Твиттера"></a></p>
</div>