이 플러그인은이를 수행하는 방법을 보여줍니다. 참고로 관련된 단계는 다음과 같습니다.
- 업데이트 / 변경할 각 설정 등록
- 컨트롤을 만들 때 배열을 설정 인수로 전달하십시오.
- 입력을 렌더링 할 때 설정 키를 전달하여 연결 및 값 지정
- 설정 키는 설정 이름이 아니라 배열의 인덱스 (예 : 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 );
}
}