Piklist Version 0.9.9.12
WordPress Helpers Version 1.17.0
Tried to save an image to the metabox on main sidebar widget but did not work.
Any ways I can resolve this?
Code as per below:
<?php
piklist(‘field’, array(
‘type’ => ‘group’
,’field’ => ‘sidebar_section’
,’add_more’ => true
,’label’ => __(‘Sidebar’, ‘sidebar-section’)
,’description’ => __(‘Content’, ‘sidebar-section’)
,’fields’ => array(
array(
‘type’ => ‘file’
,’field’ => ‘image’
,’label’ => __(‘Upload or choose an Image’, ‘sidebar-section’)
,’columns’ => 12
,’options’ => array(
‘modal_title’ => __(‘Add File(s)’, ‘sidebar-section’)
,’button’ => __(‘Add’, ‘sidebar-section’)
)
)
)
)
);