Category Archives: WordPress

Add “Tweet This Post” link to WordPress

Here’s a quick and dirty way to add a tweet this post link to your WordPress template. Just add this code to your site’s post template whever you want it displayed. <?php // Grab Title Text $tweet = get_the_title($id); // Change spaces into ‘+’ $tweet = str_replace (” “, “%20″, $tweet); // Grab Permalink $tweetURL [...]