Skip to content

Instantly share code, notes, and snippets.

@ahmedghazi
Created May 6, 2013 13:20
Show Gist options
  • Save ahmedghazi/5525082 to your computer and use it in GitHub Desktop.
Save ahmedghazi/5525082 to your computer and use it in GitHub Desktop.
pdf embed shortcode
function pdf_function($attr, $url) {
extract(shortcode_atts(array(
'width' => '640',
'height' => '480'
), $attr));
return '<iframe src="http://docs.google.com/viewer?url=' . $url . '&embedded=true" style="width:' .$width. '; height:' .$height. ';">Your browser does not support iframes</iframe>';
}
add_shortcode('pdf', 'pdf_function');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment