Last active
October 12, 2018 15:03
-
-
Save sDLme/37e2ff9fc3126a1cb1fdc2179b4e8fda to your computer and use it in GitHub Desktop.
[sharing]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Sharing shortcode [sharing] | |
*/ | |
function sharing_func( ){ | |
ob_start(); | |
?> | |
<!-- Share panel --> | |
<div class="share-panel"> | |
<p class="share-panel__share-label">label text</p> | |
<ul class="share-panel__share-list"> | |
<li class="share-list__share-item"> | |
<a class="share-item__share-link" | |
target="_blank" | |
href="https://www.facebook.com/sharer/sharer.php?u=http%3A//www.sharelinkgenerator.com/"> | |
<img class="share-item__share-icon" | |
src="<?php echo get_stylesheet_directory_uri() ?>/imgs/facebook.svg" | |
alt="Icon"> | |
</a> | |
</li> | |
<li class="share-list__share-item"> | |
<a href="https://www.linkedin.com/shareArticle?mini=true&url=https://<?php echo $url . '/wanted/' .$title ?>&title=&summary=&source=" | |
target="_blank" | |
class="share-item__share-link"> | |
<img src="<?php echo get_stylesheet_directory_uri() ?>/imgs/linkedin.svg" | |
alt="Icon" | |
class="share-item__share-icon"> | |
</a> | |
</li> | |
<li class="share-list__share-item"> | |
<a href="whatsapp://send?text=Hello from perelview" data-action="share/whatsapp/share" | |
target="_blank" | |
class="share-item__share-link"> | |
<img src="<?php echo get_stylesheet_directory_uri() ?>/imgs/whatsapp.svg" | |
alt="Icon" | |
class="share-item__share-icon"> | |
</a> | |
</li> | |
</ul> | |
</div><!-- End of Share panel --> | |
<?php | |
return ob_get_clean(); | |
} | |
add_shortcode('sharing', 'sharing_func'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment