Skip to content

Instantly share code, notes, and snippets.

@plewick
Created August 2, 2016 10:47
Show Gist options
  • Select an option

  • Save plewick/fa82e2189885e543bb8bfbcfe87947b0 to your computer and use it in GitHub Desktop.

Select an option

Save plewick/fa82e2189885e543bb8bfbcfe87947b0 to your computer and use it in GitHub Desktop.
Simple wordpress PHP function for lorem impum shortcode generated from http://www.lipsum.com/
function lipsum_shc() {
ob_start();
$url = 'http://www.lipsum.com/feed/json';
$content = file_get_contents($url);
$json = json_decode($content, true);
foreach($json as $i){
echo wpautop($i['lipsum']);
}
return ob_get_clean();
}
add_shortcode( 'lipsum', 'lipsum_shc' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment