Skip to content

Instantly share code, notes, and snippets.

@kachi
Created March 16, 2012 20:11
<?php
function add_qrcode_in_this_article($atts) {
extract(shortcode_atts(array(
'url' => 'http://example.com',
'size' => '80',
), $atts));
return '<img src="https://chart.googleapis.com/chart?chs=' . $size . 'x' . $size . '&cht=qr&chl=' . $url . '&choe=UTF-8 " alt="QR Code"/>';
}
add_shortcode('myqrcode', 'add_qrcode_in_this_article');
?>
/*ショートコードは [myqrcode url="http://foo.net" size="150"] と書く。*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment