Skip to content

Instantly share code, notes, and snippets.

@sDLme
Last active October 12, 2018 15:03
Show Gist options
  • Save sDLme/37e2ff9fc3126a1cb1fdc2179b4e8fda to your computer and use it in GitHub Desktop.
Save sDLme/37e2ff9fc3126a1cb1fdc2179b4e8fda to your computer and use it in GitHub Desktop.
[sharing]
/*
* 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