カスタマイザーコントロールの複数の入力


16

単一のカスタムコントロールがあるとしますが、このコントロールには保存が必要な2つの入力があります。たとえば、

  • 通貨の種類と価値
  • サイズと測定単位
  • 名前と苗字
  • テキストとスタイル
  • 画像と画像サイズ
  • フォントファミリーとフォントの太さ

どうすればいいですか?コントロールを作成するときに設定オプションがありますが、使用方法を示唆するドキュメントはありません。実際に行われている唯一の例はEasy Google Fontsであり、その方法についての説明はありません。読みにくいです。コントロールとセクションをネストすることはできますか?

これまでのところ、私が見つけたすべてのチュートリアルとドキュメントでは、単一のhtml入力を持つコントロールについて説明しています。


カスタムコントロールはWordPressテーマカスタマイズAPI:codex.wordpress.org/Theme_Customization_APIまたは設定API:codex.wordpress.org/Settings_APIで使用されていますか?
レイチェルベイカー14年

テーマmodは私のテストでこれまで使用したものですが、どちらにも好みはありません。どちらか一方または両方の説明を受け入れます
トムJノウェル

回答:


17

このプラグインは、その方法を示しています。注目すべきは、関連する手順は次のとおりです。

  • 更新/変更する各設定を登録する
  • コントロールを作成するとき、設定引数として配列を渡します
  • 入力をレンダリングするときに、設定キーをリンクと値に渡します
  • 設定キーは設定の名前ではなく、配列のインデックス、たとえば0、1、2
  • 経由でコントロールに登録された設定にアクセスする $this->settings

コードは次のとおりです。

<?php
/*
Plugin Name: TJN Typography Control Demo
Author: Tom J Nowell
Version: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

add_action( 'customize_register', 'tjn_customize_register' );
function tjn_customize_register( $wp_customize ) {
    if ( ! isset( $wp_customize ) ) {
        return;
    }
    if ( class_exists( 'WP_Customize_Control' ) ) {

        class Toms_Control_Builder extends WP_Customize_Control {

            public $html = array();

            public function build_field_html( $key, $setting ) {
                $value = '';
                if ( isset( $this->settings[ $key ] ) )
                    $value = $this->settings[ $key ]->value();
                $this->html[] = '<div><input type="text" value="'.$value.'" '.$this->get_link( $key ).' /></div>';
            }

            public function render_content() {
                $output =  '<label>' . $this->label .'</label>';
                echo $output;
                foreach( $this->settings as $key => $value ) {
                    $this->build_field_html( $key, $value );
                }
                echo implode( '', $this->html );
            }

        }

        $section = new TJN_Customizer_Section( $wp_customize, 'test', 'Test', 11 );
        $field = new TJN_Customizer_Field( 'testfield','','Test Control' );
        $field->add_to_section( $wp_customize, $section );
    }
}


class TJN_Customizer_Section {
    public $name='';
    public $pretty_name='';
    public function __construct( WP_Customize_Manager $wp_customize, $name, $pretty_name, $priority=25 ) {
        $this->name = $name;
        $this->pretty_name = $pretty_name;

        $wp_customize->add_section( $this->getName(), array(
            'title'          => $pretty_name,
            'priority'       => $priority,
            'transport'      => 'refresh'
        ) );
    }

    public function getName() {
        return $this->name;
    }
    public function getPrettyName() {
        return $this->pretty_name;
    }
}

class TJN_Customizer_Field {

    private $name;
    private $default;
    private $pretty_name;

    public function __construct( $name, $default, $pretty_name ) {
        $this->name = $name;
        $this->default = $default;
        $this->pretty_name = $pretty_name;
    }

    public function add_to_section( WP_Customize_Manager $wp_customize, TJN_Customizer_Section $section ) {

        $wp_customize->add_setting( $this->name, array(
            'default'        => $this->default,
            'type'           => 'theme_mod',
            'capability'     => 'edit_theme_options'
        ) );
        $wp_customize->add_setting( 'moomins', array(
            'default'        => $this->default,
            'type'           => 'theme_mod',
            'capability'     => 'edit_theme_options'
        ) );
        $wp_customize->add_setting( 'papa', array(
            'default'        => $this->default,
            'type'           => 'theme_mod',
            'capability'     => 'edit_theme_options'
        ) );

        $control = new Toms_Control_Builder(
            $wp_customize, $this->name, array(
            'label'    => $this->pretty_name,
            'section'  => $section->getName(),
            'settings'   => array (
                $this->name,
                'moomins',
                'papa'
            )
        ) );

        $wp_customize->add_control( $control );
    }
}

2
ちょうど必要なもの、今私は平和に眠ることができます
chifliiiii
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.