0
我需要驗證wordpress WP MVC生成的插件中的表單字段。使用WP MVC的wordpress表單驗證
我跟着wpmvc的教程,但沒有得到任何迴應。
下面碼被用於驗證:
/models/geozone.php
var $validate = array(
'geozone_name' => array(
'required' => true,
'pattern' => '/^[A-Z]/',
'message' => 'Please enter a capitalized name in the Geozone Name field!'
),
'state' => array(
'rule' => 'numeric',
'required' => true,
'message' => 'you cannot leave this field empty!')
);
的記錄添加如常。
任何想法來完善代碼?