【wordpress】テーマカスタマイザーにテキスト入力する

  • URLをコピーしました!
目次

テーマカスタマイザーにテキスト入力欄を作る

クライアント様が、サイト内のいたるところで登場するテキストを3つだけ、管理画面上で入力したいとおっしゃるので、試しにカスタマイザーに入れてみたのですが結構詰まったのでメモ。

functions.php

/*------------------------------------*\
	customize_register
\*------------------------------------*/
function my_theme_customize_register( $wp_customize ) {
    $wp_customize->add_section( 'text_three', array(
        'title'     => '3項目分', // 項目名
        'priority'  => 1, // 優先順位
    ));

    $wp_customize->add_setting( 'itemOne', array(
        'default'   => '',
        'type'      => 'option',
        'transport' => 'postMessage', // 表示更新のタイミング。デフォルトは'refresh'(即時反映)
    ));
    $wp_customize->add_control( 'my_theme_options_item_one', array(
        'settings'  => 'itemOne', // settingのキー
        'label'     => '1つ目', // ラベル名
        'section'   => 'text_three', // sectionを指定
        'type'      => 'text', // フォームの種類を指定
    ));

    $wp_customize->add_setting( 'itemTwo', array(
        'default'   => '',
        'type'      => 'option',
        'transport' => 'postMessage', // 表示更新のタイミング。デフォルトは'refresh'(即時反映)
    ));
    $wp_customize->add_control( 'my_theme_options_item_two', array(
        'settings'  => 'itemTwo', // settingのキー
        'label'     => '2つ目', // ラベル名
        'section'   => 'text_three', // sectionを指定
        'type'      => 'text', // フォームの種類を指定
    ));

    $wp_customize->add_setting( 'itemThree', array(
        'default'   => '',
        'type'      => 'option',
        'transport' => 'postMessage', // 表示更新のタイミング。デフォルトは'refresh'(即時反映)
    ));
    $wp_customize->add_control( 'my_theme_options_item_three', array(
        'settings'  => 'itemThree', // settingのキー
        'label'     => '3つ目', // ラベル名
        'section'   => 'text_three', // sectionを指定
        'type'      => 'text', // フォームの種類を指定
    ));
}
add_action( 'customize_register', 'my_theme_customize_register' );

 

テンプレート側にはこんな風に出力を書きます。get_option()の中にはsettingのキーを書きます。

<?php echo esc_html(get_option( 'itemOne' )); ?>

 

追記@2018/2/6

「テーマカスタマイザーで入力したテキストを固定ページに出す方法」も考えました。

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

コメント

コメント一覧 (1件)

コメントする

コメントは日本語で入力してください。(スパム対策)

CAPTCHA

目次