Tag Archive for idevcenter

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

iDC WordPress Shortcode

function idcRankHandler($args){
extract(shortcode_atts(array('link' => null),$args));
$idcRef = !is_null($link) ? "http://idevcenter/link/$link" : "http://www.idevcenter.com/links/post/?url=".$hold=rawurlencode(get_permalink($post->ID));
return '<a href="'.$idcRef .'" class="idcRankAnchor">'
.'<img src="http://idevcenter.com/links/image?url='.$hold
.'" title="Vote on iDevCenter.com" alt="Vote on iDevCenter.com" class="idcRankImage" />
</a>';
}
add_shortcode("idc","idcRankHandler"); //Attaching iDC handler

source