CMB2 / CMB2-Post-Search-field

Custom field for CMB2 which adds a post-search dialog for searching/attaching other post IDs
67 stars 27 forks source link

"Priority" arg doesn't seem to work on for metaboxes on term meta pages #17

Closed MickeyKay closed 8 years ago

MickeyKay commented 8 years ago

I'm outputting a CMB2 metabox on categories and the "priority" arg doesn't seem to have any effect. Here's the code I'm using:

$metabox = new_cmb2_box( array(
    'id'            => $prefix . 'related-content-cat',
    'title'         => __( 'Related Content Items', 'mkp-holacracy' ),
    'object_types'     => array( 'term' ),
    'taxonomies'       => array( 'category', 'post_tag' ),
    'new_term_section' => true,
    'priority' => 'high'
) );

I've tried all possible priority values and none seems to change the output. Any ideas?

MickeyKay commented 8 years ago

Sorry, wrong repo :)