Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. $meta_boxes[] = array (
  2. 'title' => esc_html__( 'test', 'text-domain' ),
  3. 'id' => 'test',
  4. 'post_types' => array(
  5. 0 => 'movie',
  6. ),
  7. 'context' => 'normal',
  8. 'priority' => 'high',
  9. 'fields' => array(
  10. array (
  11. 'id' => $prefix . 'group_test',
  12. 'type' => 'group',
  13. 'name' => esc_html__( 'Group', 'text-domain' ),
  14. 'fields' => array(
  15. array (
  16. 'id' => $prefix . 'test1',
  17. 'type' => 'file_advanced',
  18. 'name' => esc_html__( 'File Advanced', 'text-domain' ),
  19. 'max_file_uploads' => 1,
  20. 'max_status' => false,
  21. 'clone' => 1,
  22. 'sort_clone' => 1,
  23. ),
  24. ),
  25. 'clone' => 1,
  26. 'sort_clone' => 1,
  27. 'default_state' => 'expanded',
  28. ),
  29. ),
  30. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement