iDC WordPress Shortcode (param-less)

function idcRankHandler(){
$url = rawurlencode(get_permalink($post->ID));
return '<a href="http://idevcenter.com/links/vote?url='. $url .'" class="idcRankAnchor">'
.'<img src="http://idevcenter.com/links/image?url='.$url
.'" title="Vote on iDevCenter.com" alt="Vote on iDevCenter.com" class="idcRankImage" />
</a>';
} add_shortcode("idc","idcRankHandler"); //Attaching iDC handler

source

Comments are closed.