GoogleDocでPDFやPPTを表示するショートコード
Add function.php
PDF(PDFファイル)
function pdf_short($attr, $content) {
return '<a href="http://docs.google.com/viewer?url=' . $attr['href'] . '">'.$content.'</a>';
}
add_shortcode('pdf', 'pdf_short');
return '<a href="http://docs.google.com/viewer?url=' . $attr['href'] . '">'.$content.'</a>';
}
add_shortcode('pdf', 'pdf_short');
[pdf href="http://domain.com/link/to/file.pdf"]PDF Link Here[/pdf]
DOC(ワードファイル)
function doc_short($attr, $content) {
return '<a href="http://docs.google.com/viewer?url=' . $attr['href'] . '">'.$content.'</a>';
}
add_shortcode('doc', 'doc_short');
return '<a href="http://docs.google.com/viewer?url=' . $attr['href'] . '">'.$content.'</a>';
}
add_shortcode('doc', 'doc_short');
[doc href="http://domain.com/link/to/file.doc"]DOC Link Here[/doc]
PPT(パワーポイントファイル)
function ppt_short($attr, $content) {
return '<a href="http://docs.google.com/viewer?url=' . $attr['href'] . '">'.$content.'</a>';
}
add_shortcode('ppt', 'ppt_short');
return '<a href="http://docs.google.com/viewer?url=' . $attr['href'] . '">'.$content.'</a>';
}
add_shortcode('ppt', 'ppt_short');
[ppt href="http://domain.com/link/to/file.ppt"]PPT Link Here[/ppt]
日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)