Advertisement
Guest User

Mo J

a guest
Nov 26th, 2009
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function add_post_meta_box() {
  2.     if (function_exists('add_meta_box')) {
  3.         add_meta_box('edit-flow', 'Edit Flow', array(&$this, 'post_meta_box'), 'post', 'normal', 'high');
  4.         add_meta_box('edit-flow', 'Edit Flow', array(&$this, 'post_meta_box'), 'page', 'normal', 'high');
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement