Ejemplo n.º 1
0
function the_item_link()
{
    echo get_the_item_link();
}
Ejemplo n.º 2
0
 public function tweet_intent($id)
 {
     $url = 'https://twitter.com/intent/tweet?';
     $url .= 'text=' . urlencode(get_the_title($id));
     $url .= '&url=' . urlencode(get_the_item_link($id));
     $url .= '&via=' . urlencode('pressfwd');
     return $url;
 }