There are buttons social networks with their own design. I want to make it so that when you click on each button a person can share a post with other users on your page. For contact and facebook, I found where <?php echo get_permalink(); ?>
<?php echo get_permalink(); ?>
current wordpress page
<div> <p>Какой-то текст</p> <p>Поделиться</p> <div class="social_icons_holder"> <ul class="social_icons clearfix"> <li class="facebook"> <span class="tool-tip">Facebook</span> <a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo get_permalink(); ?>" target="_blank" title="Поделиться в Facebook"><i class="fa fa-facebook"></i></a> </li> <li class="instagram"> <span class="tool-tip">Instagram</span> <a target="_blank" href="http://instagram.com"><i class="fa fa-instagram"></i></a> </li> <li class="vk"> <span class="tool-tip">Vkontakte</span> <a href="https://vk.com/share.php?url=<?php echo get_permalink(); ?>" target="_blank" title="Поделиться ВКонтакте"><i class="fa fa-vk"></i></a> </li> <li class="foursquare"> <span class="tool-tip">Foursquare</span> <a target="_blank" href="https://ru.foursquare.com/"><i class="demo-icon icon-foursquare-1"></i></a> </li> </ul> <!--/ .social-icons--> </div> </div>