kirki-framework / control-palette
为Kirki自定义框架提供的调色板控制。
此包的官方仓库似乎已不存在,因此该包已被冻结。
v0.1.1
2022-02-01 07:36 UTC
Requires
- php: >=7.0
- kirki-framework/control-radio: *
- kirki-framework/url-getter: *
This package is auto-updated.
Last update: 2022-12-29 09:43:55 UTC
README
安装
首先,使用composer安装该包
composer require kirki-framework/control-palette
确保包含自动加载器
require_once get_parent_theme_file_path( 'vendor/autoload.php' );
要使用自定义器API添加控制项
/** * Registers the control and whitelists it for JS templating. * * @since 1.0 * @param WP_Customize_Manager $wp_customize The WP_Customize_Manager object. * @return void */ add_action( 'customize_register', function( $wp_customize ) { $wp_customize->register_control_type( '\Kirki\Control\Palette' ); } ); /** * Add Customizer settings & controls. * * @since 1.0 * @param WP_Customize_Manager $wp_customize The WP_Customize_Manager object. * @return void */ add_action( 'customize_register', function( $wp_customize ) { // Add settings. $wp_customize->add_setting( 'my_control_code', [ 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => '', 'transport' => 'refresh', // Or postMessage. 'sanitize_callback' => 'sanitize_text_field', // Or a custom sanitization callback. ] ); // Add controls. $wp_customize->add_control( new \Kirki\Control\Palette( $wp_customize, 'my_control_code', [ 'label' => esc_html__( 'My Control', 'theme_textdomain' ), 'section' => 'my_section', 'choices' => [ 'green' => [ '#E8F5E9', '#C8E6C9', '#A5D6A7', '#81C784', '#66BB6A', '#4CAF50', '#43A047', '#388E3C', '#2E7D32', '#1B5E20', '#B9F6CA', '#69F0AE', '#00E676', '#00C853' ], 'bnw' => [ '#000000', '#ffffff' ], ], ] ) ); } );