WordPressのショートコードの基本的なものから実用的なものまでのチュートリアルをSmashing Magazineから紹介します。 Mastering WordPress Shortcodes シンプルなショートコード 最初はお約束の「Hello, World!」の表示。 functions.php function hello() { return 'Hello, World!'; } add_shortcode('hw', 'hello'); WordPressに記述するショートコード [hw] URLを表示するショートコード リンクのhrefからURLを取得して表示。 functions.php function myUrl($atts, $content = null) { extract(shortcode_atts(array( "href" => 'http://' )