Created
June 19, 2014 13:43
-
-
Save hitsujixgit/97cebae1c272a07a0294 to your computer and use it in GitHub Desktop.
カスタムヘッダーを設置する - index.phpをカスタマイズする#8
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 | |
// カスタムヘッダー画像を設置する | |
$custom_header_defaults = array( | |
'default-image' => get_bloginfo('template_url').'/img/wordpress-logo-hoz-rgb_small.png', | |
'width' => 220, | |
'height' => 50, | |
'header-text' => false, //ヘッダー画像上にテキストをかぶせる | |
); | |
add_theme_support( 'custom-header', $custom_header_defaults ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment