所以我在这里有一个常规形式,从用户那里获取输入。
<form method="POST" action="/* missing action */">
<input type="text" name="firstname" />
<input type="text" name="lastname" />
<input type="submit" name="submit" value="Create/>
</form>
现在,正如您在表单中注意到的那样,属性action
丢失了。我应该把它放在那里,以便在我制作的functions.php
中进行映射。
function create(firstname, lastname) {
global $wpdb;
$wpdb->insert(.....);
}
或者,如果我认为没有意义。我应该放在那里以保存用户的输入。我希望你能帮助我。非常感谢。
EDITED
functions.php
位于主题中。