Html google map 画像表示
index.html
<!DOCTYPE html><html lang="ja"><head> <!-- 元ネタ http://minomon.jp/blog/?p ...css font-family
$font-family-sans-serif: "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pr ...
wp カスタム投稿のサイドバー表示
http://msweb.moo.jp/wordpress/958/
wp カスタム投稿プラグイン
カスタムフィールドテンプレートhttp://make.mapmap.biz/plugins/37/Custom Post Type UIhttp://kotori-blog.com/wordpress/custom_post_type_ui ...
wp ターム表示
<?php the_taxonomies(); ?>タクソノミー:商品のカテゴリー
ターム:aaa
ターム:aaa
の場合、
商品のカテゴリー: aaa
html html5テンプレート
<!DOCTYPE html><html lang="ja"><head><meta charset="UTF-8"><title>titl ...
wp カテゴリー別記事一覧を表示(サイドバー)
基本
<?php$categories = get_categories();foreach($categories as $category) :?><h3><?php echo $categor ...wp テンプレート名取得
<?php global $template; var_dump($template); ?>
wp jquery cdnを読み込む
function include_jquery_cdn_loader() {if( !is_admin() ){//WP Default jQuery Load Deregister.wp_deregister_script('jquery ...
wp 管理画面のテンプレートでJqueryを使う
<script>jQuery(document).ready(function(){jQuery('#hoge').click(function(){alert('hoge');});});</script>