라이브 미리보기 사용자 정의 패널에 새로운 종류의 컨트롤을 추가하는 방법을 찾고 있습니다. 사용하여 패널에 새 섹션을 추가하는 방법을 보았습니다.
add_action( 'customize_register'...
구현하려는 컨트롤은 다른 종류의 색상 선택기입니다. 에서 이전 후 , 우리는 위젯을 추가하는 코어 클래스를 확장하는 방법을 볼 수 있지만, 내가 여기에 부족한 것은 범위에 내 목적을 가지고 저를있게 훅입니다 - WP_Customize_Palette_Control. 에서
여기에서 코드 의 시작 부분을 볼 수 있습니다 . 이 코드는 functions.php
내 테마 파일에 있습니다.
도움을 주셔서 감사합니다. 롭
코드를 방금 업데이트했습니다. 이제 require_once
수업을 가져와야합니다. 이제 PHP 오류가 없지만 새로운 컨트롤 HTML이 나타나지 않습니다.
<?php
require_once( ABSPATH . WPINC . '/class-wp-customize-setting.php' );
require_once( ABSPATH . WPINC . '/class-wp-customize-section.php' );
require_once( ABSPATH . WPINC . '/class-wp-customize-control.php' );
class WP_Customize_Palette_Control extends WP_Customize_Image_Control {
public $type = 'palette';
public $removed = '';
public $context;
public function enqueue() {
//wp_enqueue_script( 'wp-plupload' );
}
public function to_json() {
parent::to_json();
$this->json['removed'] = $this->removed;
if ( $this->context )
$this->json['context'] = $this->context;
}
public function render_content() {
?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<div>
<a href="#" class="button-secondary upload"><?php _e( 'Upload' ); ?></a>
<a href="#" class="remove"><?php _e( 'Remove' ); ?></a>
</div>
</label>
<?php
}
}
//new WP_Customize_Palette_Control();
//add_action('customize_controls_init', 'WP_Customize_Palette_Control');
// add an option to the customize panel
function sci_customize_controls_init($wp_customize) {
$wp_customize->add_section( 'themename_color_scheme', array(
'title' => __( 'Color Scheme', 'themename' ),
'priority' => 35,
) );
$wp_customize->add_setting( 'themename_theme_options[color_scheme]', array(
'default' => 'some-default-value',
'type' => 'option',
'capability' => 'edit_theme_options',
) );
$wp_customize->add_control( 'themename_color_scheme', array(
'label' => __( 'Color Scheme', 'themename' ),
'section' => 'themename_color_scheme',
'settings' => 'themename_theme_options[color_scheme]',
'type' => 'palette',
'choices' => array(
'value1' => 'Choice 1',
'value2' => 'Choice 2',
'value3' => 'Choice 3',
),
) );
}
add_action( 'customize_register', 'sci_customize_controls_init' );