有什么方法可以添加可以接受图像文件的自定义字段。
就像:
<input type="file" name="doctor_dp"></input>
但是以上代码不适用于WordPress ...请帮助。
答案 0 :(得分:0)
如果您要处理自定义帖子类型,最好选择Advanced Custom Field Plugin
由于您提到了input
标签,请尝试
<input type="file" name="myImage" accept="image/x-png,image/gif,image/jpeg" />
或简单地
<input type="file" name="myImage" accept="image/*" />