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
版权声明:本文标题:api - Customizer List of Items 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1738483657a2089293.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论