Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. add_action('admin_menu','my_admin_menu');
  2. function my_admin_menu() {
  3. $post_options = new thesis_post_options;
  4. $post_options->meta_boxes();
  5. foreach ($post_options->meta_boxes as $meta_name => $meta_box)
  6. {
  7. add_meta_box($meta_box['id'], $meta_box['title'], array('thesis_post_options', 'output_' . $meta_name . '_box'), 'graphics', 'normal', 'high'); #wp
  8. }
  9.  
  10. add_action('save_post', array('thesis_post_options', 'save_meta')); #wp
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement