MENU

カスタム背景

カスタム背景は背景色とイメージをカスタマイズするために提供するテーマ機能です。

Custom Backgrounds is a theme feature that provides for customization of the background color and image.

外観の背景画面を参照してください。

See also Appearance Background Screen.

テーマのサポートを追加する

バージョン3.4以降、テーマは次のようにカスタムの背景をサポートしている場合にはfunctions.phpファイルにadd_theme_support()を使用する必要があります。

Since Version 3.4, themes need to use add_theme_support() in the functions.php file to supports custom backgrounds, like so:

[php]add_theme_support( ‘custom-background’ );[/php]

あなたがデフォルトの引数を使用して追加できることに注意してください。

Note that you can add default arguments using:

[php]$defaults = array(
‘default-color’ => ”,
‘default-image’ => ”,
‘wp-head-callback’ => ‘_custom_background_cb’,
‘admin-head-callback’ => ”,
‘admin-preview-callback’ => ”
);
add_theme_support( ‘custom-background’, $defaults );[/php]
目次

‘background.jpg’の背景画像で、デフォルトの’#000000’背景色を使用する例です。

An example using default ‘#000000’ background color with ‘background.jpg’ background image:

[php]$args = array(
‘default-color’ => ‘000000’,
‘default-image’ => get_template_directory_uri() . ‘/images/background.jpg’,
);
add_theme_support( ‘custom-background’, $args );[/php]

関連

Theme Support: add_theme_support(), remove_theme_support(), current_theme_supports()
Theme Features: widgets, menus, post-formats, post-thumbnails, custom-background, custom-header, automatic-feed-links, editor-style

よかったらシェアしてね!
  • URLをコピーしました!

この記事を書いた人

WordPress Love! 休日はほぼWordPress仲間と一緒に勉強会や写真を撮りに行っています。現在育児中のため、オフが多いです(>△<<<)

コメント

コメントする

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

目次