Untitled
By: a guest | Jan 29th, 2009 | Syntax:
None | Size: 0.72 KB | Hits: 193 | Expires: Never
function get_tweet_this_url() {
$url = 'http://twitter.com/home/?status=Reading:+' .
get_tweet_this_trim_title().'+-+'. get_tweet_this_short_url().'+by+@duoblogger+and+@hendricius';
if (!tt_is_preview()) {
if (get_option('tt_limit_to_single') == "true") {
if (is_single() || is_page()) return $url;
}
else return $url;
}
}
function tweet_this_url() {
echo get_tweet_this_url();
}
function tweet_this_text_link() {
$link = '<a href="' . get_tweet_this_url() . '" title="Post to Twitter (' .
get_tweet_this_short_url() . ')">Tweet This</a>';
if (!tt_is_preview()) {
if (get_option('tt_limit_to_single') == "true") {
if (is_single() || is_page()) echo $link;
}
else echo $link;
}
}