Created
April 19, 2015 19:14
-
-
Save tanftw/a776f381f5e44c0c2828 to your computer and use it in GitHub Desktop.
Meta Box field demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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