I’m using Stable tag: 0.9.9.9 and want to upgrade to the latest version.
At this point I’m using Piklist only to get checkboxes for two taxonomies.
Here’s my code…
/*
Title: Claims
Post Type: products
*/
piklist('field', array(
'type' => 'checkbox'
,'scope' => 'taxonomy'
,'field' => 'claim'
,'label' => 'Claims'
,'description' => 'Terms will appear when they are added to this taxonomy.'
,'choices' => array(
)
+ piklist(get_terms('claim', array(
'hide_empty' => false
))
,array(
'term_id'
,'name'
)
)
));
Do you see any issues in updating?