Hey,
currently there's no image shortcode however you can easily implement your own. Open up functions.php and add:
function avia_sc_img($atts, $content = "", $shortcodename = ""){
return '<img src="'.$atts['src'].'" alt="" style="border: 1px solid #eee" />';
}
add_shortcode('img','avia_sc_img');
If you don't want to use inline styles wrap the image in a span like:
function avia_sc_img($atts, $content = "", $shortcodename = ""){
return '<span class="imgborder"><img src="'.$atts['src'].'" alt="" /></span>';
}
add_shortcode('img','avia_sc_img');
and add:
.imgborder img{
border: 1px solid #E1E1E1;
}
to css/custom.css. Obviously you can adjust the border style :)
Shortcode usage:
[img src='path/to/image.jpg']