Created
November 15, 2012 22:55
-
-
Save Pleiades/4082109 to your computer and use it in GitHub Desktop.
Google Docs Viewer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pdflink($attr, $content) { | |
if ($attr['href']) { | |
return '<a class="pdf" href="http://docs.google.com/viewer?url=' . $attr['href'] . '">'.$content.'</a>'; | |
} else { | |
$src = str_replace("=", "", $attr[0]); | |
return '<a class="pdf" href="http://docs.google.com/viewer?url=' . $src . '">'.$content.'</a>'; | |
} | |
} | |
add_shortcode('pdf', 'pdflink'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[pdf=http://manuals.info.apple.com/en_US/Enterprise_Deployment_Guide.pdf]Link text.[/pdf] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment