我想在WordPress管理仪表板中创建字段文本输入和文件输入的形式,并将数据保存在数据库中的自定义创建表中。
function certificate_fields() { ?>
<h2>Fill the details</h2>
<form method="post" action="options.php">
Enter your code : <input type="text" name="s_code" placeholder="Enter Code"><br /><br />
Upload Certificate image : <input type="file" name="s_image"><br /><br />
<input type="submit" value="Submit Details">
</form>
<?php }
请建议我。
答案 0 :(得分:-1)
发帖前至少做一些简单的谷歌搜索。 首先创建一个插件并添加一个Admin选项页面。创建表单。 无论如何,这里有一些参考文献;
https://blog.idrsolutions.com/2014/06/wordpress-plugin-part-1/