Skip to content

Instantly share code, notes, and snippets.

@jcanfield
Created August 10, 2012 06:21
Show Gist options
  • Save jcanfield/3311713 to your computer and use it in GitHub Desktop.
Save jcanfield/3311713 to your computer and use it in GitHub Desktop.
Wordpress Embed PDF Shortcode
// Embed PDF File using shortcode
// Usage- [embedpdf
function embedthepdf($atts, $content = null) {
extract(shortcode_atts(array(
"id" => 'default-embed',
"url" => 'http://samplepdf.com/sample.pdf',
"width" => '990px',
"height" => '743px'
), $atts));
return '<iframe id="' . $id . '" src="http://docs.google.com/viewer?url=' . $url . '&embedded=true" style="width:' . $width . '; height:' . $height . ';" frameborder="0"></iframe>';
}
add_shortcode('embedpdf', 'embedthepdf');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment