テーマをCocoonに変更しました!

stinger3のヘッドバナーサイズの変更のやり方

wordpress

20131214112030

オリジナルヘッダー画像サイズは986px×150pxです

高さを変更したい場合

20131214112239

「テーマ編集」より「テーマの為の関数(functions.php)」を選択して以下のタグを探して書き換えるだけでokですよ

//カスタムヘッダー
$args = array(
	'width'         => 986,
	'height'        => 150,
        'flex-height' => true,
	'default-image' => get_template_directory_uri() . '/images/stinger3.png',
);
add_theme_support( 'custom-header', $args );

//RSS
add_theme_support('automatic-feed-links');
ブログ管理者などによく売れてる本です

コメント

タイトルとURLをコピーしました