コード例 #1
0
ファイル: class.CPT_ItemSC.php プロジェクト: andreas-thor/eal
 public function WPCB_register_meta_box_cb()
 {
     global $item;
     $item = new EAL_ItemSC();
     $item->load();
     parent::WPCB_register_meta_box_cb();
 }
コード例 #2
0
ファイル: class.EAL_ItemSC.php プロジェクト: andreas-thor/eal
 public static function save($post_id, $post)
 {
     if ($_POST["post_type"] != "itemsc") {
         return;
     }
     $item = new EAL_ItemSC();
     $item->init($post_id, $post);
     $item->save2DB();
 }