Advertisement
Guest User

post-social-share.php

a guest
Apr 9th, 2015
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.46 KB | None | 0 0
  1. <?php
  2.  
  3. if ( post_password_required() )
  4.     return;
  5.  
  6. $featured_img = wp_get_attachment_url( get_post_thumbnail_id());
  7. $posttitle = get_the_title();
  8. ?>
  9. <section class="article-sharer section container clearfix">
  10.     <div class="socials-share">
  11.         <a target="_blank" data-shareto="Facebook" href="https://www.facebook.com/sharer/sharer.php?u=<?php echo wp_get_shortlink() ?>" class="social-share share-facebook">
  12.             <i class="fa fa-facebook"></i><span class="share-text">Share to Facebook</span>
  13.         </a>
  14.         <a target="_blank" data-shareto="Twitter" href="https://twitter.com/home?status=<?php echo urlencode($posttitle . ". " . esc_url( wp_get_shortlink() )); ?>" class="social-share share-twitter">
  15.             <i class="fa fa-twitter"></i><span class="share-text">Share to Twitter</span>
  16.         </a>
  17.         <a target="_blank" data-shareto="Google" href="https://plus.google.com/share?url=<?php echo wp_get_shortlink() ?>" class="social-share share-google-plus">
  18.             <i class="fa fa-google-plus"></i>
  19.         </a>
  20.         <a target="_blank" data-shareto="Pinterest" href="https://pinterest.com/pin/create/button/?url=<?php echo wp_get_shortlink() ?>&amp;media=<?php echo esc_url( $featured_img ); ?>&amp;description=<?php urlencode(esc_url( get_the_title() )); ?>" class="social-share share-pinterest">
  21.             <i class="fa fa-pinterest"></i>
  22.         </a>
  23.         <a target="_blank" data-shareto="Linked In" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=<?php echo wp_get_shortlink() ?>&amp;title=<?php urlencode(esc_url( get_the_title() )) ?>&amp;summary=<?php echo urlencode( wp_strip_all_tags( get_the_excerpt() )) ?>&amp;source=<?php urlencode( esc_url( get_bloginfo( 'name' ) ) ) ?>" class="social-share share-linkedin">
  24.             <i class="fa fa-linkedin"></i>
  25.         </a>
  26.         <a target="_blank" data-shareto="VK" href="http://vkontakte.ru/share.php?url=<?php echo wp_get_shortlink() ?>&amp;title=<?php urlencode(esc_url( get_the_title() )) ?>&amp;summary=<?php echo urlencode( wp_strip_all_tags( get_the_excerpt() )) ?>&amp;source=<?php urlencode( esc_url( get_bloginfo( 'name' ) ) ) ?>" class="social-share share-vk">
  27.             <i class="fa fa-vk"></i>
  28.         </a>
  29.     </div>
  30.     <div class="article-shorturl">
  31.         <input type="text" id="shorturl" class="shorturl" data-clipboard-text="<?php echo get_permalink() ?>" value="<?php echo get_permalink() ?>">
  32.     </div>
  33. </section>
  34. <div class="dummy-share-block"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement