我制作了一个插件进行一些计算。
Class Math {
var $id; // I want to map this id to post_id
var $a;
var $b;
var $c;
function calculate{
$this->a = $value_from_post_meta_input_box;
$this->b = $data_generated_in_calculating_process;
$this->c = $result_of_some_function;
}
}
在激活插件并为$a设置post meta输入框后,我可以在post meta中保存$a。现在,我怎样才能节省b美元和c美元来发布meta?如何说当前计算是具有当前post\\u ID的Math实例?