由于使用了wp_create_nonce,我使用的插件可能会给我一个错误。这是代码,
if($post['aramex_shipment_shipper_account_show'] == 1){
$info = $this->getInfo(wp_create_nonce('aramex-shipment-check' . wp_get_current_user()->user_email));
}else{
$info = $this->getInfoCod(wp_create_nonce('aramex-shipment-check' . wp_get_current_user()->user_email));
}
如何从中删除wp_create_nonce
而不影响插件功能(但删除权限)?