2010-07-13から1日間の記事一覧

WordPress 3.0 で、カスタムテンプレートプラグインを使っているとカスタム投稿タイプで画像が挿入できなくなる

custom-field-template.php の下記の箇所を書き換えると直る。 /* オリジナル */ /* function media_send_to_custom_field($html) { $options = $this->get_custom_field_template_data(); $out = '<script type="text/javascript">' . "\n" . ' //

SVGが利用可能かどうかJavaScriptで調べる方法

Modernizr 1.5 より抜粋 return !!document.createElementNS && !!document.createElementNS( "http://www.w3.org/2000/svg", "svg").createSVGRect;