自定义字段以在Wordpress中上传文件(图像)

时间:2018-07-25 09:48:23

标签: wordpress

有什么方法可以添加可以接受图像文件的自定义字段。

就像:

<input type="file" name="doctor_dp"></input>

但是以上代码不适用于WordPress ...请帮助。

1 个答案:

答案 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/*" />