admin管理员组

文章数量:1193344

I am working with Customizer api for text for example

  $wp_customize->add_setting('basic-author-callout-text', array(
            'default' => '',
            'sanitize_callback' => array( $this, 'sanitize_custom_text' )
        ));
        $wp_customize->add_control(new WP_Customize_Control($wp_customize, 'basic-author-callout-control', array(
            'label' => 'About Author',
            'section' => 'basic-author-callout-section',
            'settings' => 'basic-author-callout-text',
            'type' => 'textarea'
        )));

I want to add a list of items , do anyone has an idea about this? Thanks in advance

本文标签: apiCustomizer List of Items