Add custom post type list to select/select_advanced/autocplete options
-
HI!
I am trying to add a list of the added custom post types ‘guionistas’ to an options array for a meta box. The code looks like:
<?php add_filter( 'rwmb_meta_boxes', 'YOURPREFIX_register_meta_boxes' ); function YOURPREFIX_register_meta_boxes( $meta_boxes ) { $prefix = 'mb_'; $meta_boxes = array(); $meta_boxes[] = array( 'id' => 'guionista', 'title' => 'Guionista', 'pages' => array('historietas'), 'context' => 'normal', 'priority' => 'low', 'fields' => array( array( 'name' => 'Guionista', 'desc' => "A?ade los guionistas que participaron en esta historieta/proyecto.", 'id' => "{$prefix}guionistas", 'type' => 'autocomplete', 'options' => get_terms('guionistas', array( 'hide_empty'=> false, 'fields' => 'id=>name' ) ) ), ), ); return $meta_boxes; } ?>
With this I’m just adding the terms for label but on value I get a number. What can I do?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Add custom post type list to select/select_advanced/autocplete options’ is closed to new replies.