Skip to content

Instantly share code, notes, and snippets.

@jillmugge
Created April 22, 2014 15:01
Show Gist options
  • Save jillmugge/11182615 to your computer and use it in GitHub Desktop.
Save jillmugge/11182615 to your computer and use it in GitHub Desktop.
Building a Shortcode for Lorempixel
// http://lorempixel.com/
// [phpic width="300" height="200"]
<?php
function grab_random_picture($atts){
extract(shortcode_atts(array(
'width' => 400,
'height' => 300,
), $atts));
return '<img src="http://lorempixel.com/'. $width . '/' . $height . '" />';
}
add_shortcode('phpic', 'grab_random_picture');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment