Does your small business need an internet presence?
Published: August 8, 2011
Source: WpRecipes.com
The first step is to create the shortcode. To do so, simply paste the code below into your functions.php file.
function wpr_snap($atts, $content = null) {
extract(shortcode_atts(array(
snap = http://s.wordpress.com/mshots/v1/,
url = http://www.catswhocode.com,
alt = My image,
w = 400, // width
h = 300 // height
), $atts));
$img = img src= . $snap . . urlencode($url) . ?w= . $w . h= . $h . alt= . $alt . /;
return $img;
}
add_shortcode(snap, wpr_snap);...
Respond
Mandatory fields are marked as *