我在Wordpress中使用更多步骤形式创建插件,我想向您提供一些建议。
我有一个功能(使用短代码)和第一个表格,提交后,我想继续下一步,但我不知道哪个解决方案是最好的
我的功能:
function task_shortcode(){ ?>
<form id="form" action="" method="post">
<h3>Add new task</h3>
<div class="task-title">
<label>Title</label>
<input type="text" id="text" name="text">
</div>
<div class="task-description">
<label>Description</label>
<textarea id="desc" name="desc"></textarea>
</div>
<div class="task-new">
<input type="submit" id="create-task" name="create_new_task" value="Create new task">
</div>
</form>
<?php
}
add_shortcode('task_site','task_shortcode');
之后我想转到另一种形式,我不知道如何处理它。在提交按钮上使用经典的php动作,还是有其他解决方案?
我发现了这个,但我不知道我是否可以使用它,因为我希望它能用于前端。 https://www.sitepoint.com/handling-post-requests-the-wordpress-way/
感谢您的每一条建议