-
-
Save cliftonc0613/e66777aaebed56cf190d27683149b73c to your computer and use it in GitHub Desktop.
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
<?php | |
// Click to tweet functionality. Look for the username and hashtags at the end of the string. | |
$main_question = get_the_title(); | |
$twitter_quote = get_field('twitter_quote'); | |
?> | |
<div class="tweet-this"> | |
<a class="click-tweet" href="http://twitter.com/share?text=<?php echo html_entity_decode($main_question); ?> "<?php if($twitter_quote) { echo urlencode($twitter_quote); } ?>" via <?php echo $fullname . ' ' . $twitter_handle; ?>&url=<?php echo $roundup_permalink; ?>&hashtags=backswing @getbackswing" target="_blank"> | |
Click to Tweet | |
</a> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment