Social Sharing / tell a friend plug but specify which URL to share
I would recommend rolling your own. Use the sharethis api or addthis. Then you can use get_permalink(); for the url parameter. function wpu_share() { $url = get_permalink(); $title = get_the_title(); $add_this=”st_url=””.esc_url( $url ).'”‘; ?> <span class=”st_facebook_large” <?php echo $add_this; ?> displayText=”Facebook”></span> <span class=”st_twitter_large” <?php echo $add_this; ?> displayText=”Tweet”></span> <span class=”st_linkedin_large” <?php echo $add_this; ?> displayText=”LinkedIn”></span> … Read more