Skip to content

Instantly share code, notes, and snippets.

@hitsujixgit
Created June 19, 2014 05:57
Show Gist options
  • Save hitsujixgit/60bd58a484438511ccd9 to your computer and use it in GitHub Desktop.
Save hitsujixgit/60bd58a484438511ccd9 to your computer and use it in GitHub Desktop.
サイドバーを設置する - index.phpをカスタマイズする#5
<?php
//サイドバーを1つ設置する
register_sidebar(array(
'name'=>'サイドバー',
'before_widget'=>'<div class="sidebar-wrapper">',
'after_widget'=>'</div>',
'before_title' => '<h4 class="sidebar-title">',
'after_title' => '</h4>'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment