To create the shortcode ,just paste the following code into functions.php file.
function wpr_snap($atts, $content = null) {
extract(shortcode_atts(array(
"snap" => 'http://s.wordpress.com/mshots/v1/',
"url" => 'http://www.sandipdas.in',
"alt" => 'My image',
"w" => '500', // width
"h" => '400' // height
), $atts));
$img = '';
return $img;
}
add_shortcode("snap", "wpr_snap");
Now use the following shortcode to display any snaphot
[snap url="http://www.sandipdas.in" alt="description" w="500" h="400"]
No comments:
Post a Comment