Skip to content

Instantly share code, notes, and snippets.

@tanftw
Created April 19, 2015 19:14
Show Gist options
  • Save tanftw/a776f381f5e44c0c2828 to your computer and use it in GitHub Desktop.
Save tanftw/a776f381f5e44c0c2828 to your computer and use it in GitHub Desktop.
Meta Box field demo
$meta_boxes[] = array(
'id' => 'select_post',
'title' => 'Post Selector',
'pages' => array( 'post', 'page' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => 'Post',
'desc' => 'My Post Dropdown',
'id' => 'my_post_dropdown',
'type' => 'post',
'query_args' => array(
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'technology'
)
)
)
),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment