Skip to content

Instantly share code, notes, and snippets.

@hitsujixgit
Created June 19, 2014 13:43
Show Gist options
  • Save hitsujixgit/97cebae1c272a07a0294 to your computer and use it in GitHub Desktop.
Save hitsujixgit/97cebae1c272a07a0294 to your computer and use it in GitHub Desktop.
カスタムヘッダーを設置する - index.phpをカスタマイズする#8
<?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