Created
June 19, 2014 05:57
-
-
Save hitsujixgit/60bd58a484438511ccd9 to your computer and use it in GitHub Desktop.
サイドバーを設置する - index.phpをカスタマイズする#5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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