Exemplo n.º 1
0
 public function WPCB_register_meta_box_cb()
 {
     global $item;
     $item = new EAL_ItemSC();
     $item->load();
     parent::WPCB_register_meta_box_cb();
 }
Exemplo n.º 2
0
 public static function save($post_id, $post)
 {
     if ($_POST["post_type"] != "itemsc") {
         return;
     }
     $item = new EAL_ItemSC();
     $item->init($post_id, $post);
     $item->save2DB();
 }