Advertisement
Guest User

Untitled

a guest
May 28th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. $meta_boxes[] = array(
  2. 'id' => 'select_post',
  3. 'title' => 'Post Selector',
  4. 'pages' => array( 'post', 'page' ),
  5. 'context' => 'normal',
  6. 'priority' => 'high',
  7.  
  8. 'fields' => array(
  9. array(
  10. 'name' => 'Post',
  11. 'desc' => 'My Post Dropdown',
  12. 'id' => 'my_post_dropdown',
  13. 'type' => 'post',
  14. 'query_args' => array(
  15. 'tax_query' => array(
  16. array(
  17. 'taxonomy' => 'category',
  18. 'field' => 'slug',
  19. 'terms' => 'technology'
  20. )
  21. )
  22. )
  23. ),
  24. )
  25. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement