이미지 업로드 필드를 사용자 정의 쓰기 패널에 직접 추가하려면 어떻게해야합니까?
1 대답
- 투표
@MathSmath가 제공 한 코드가 맞습니다.그러나 많은 업로드 필드를 처리하거나 여러 파일을 업로드하려면 많이 수정해야합니다.
게다가 파일 업로드를 위해 WordPress 미디어 라이브러리를 사용하지 않습니다 (모든 더러운 작업을 수행합니다).
Meta Box 와 같은 플러그인을 살펴 보시기 바랍니다.플러그인은 파일을 업로드하는 두 가지 방법을 모두 지원합니다.
특히 여러 개의 업로드를 생성하려는 경우 코드 작성 및 유지 관리 노력을 줄이는 데 도움이됩니다.
면책 조항 : 저는 Meta Box의 작성자입니다.
The code that @MathSmath provided is right. However, if you handle many upload fields, or want to upload multiple files, then you have to modify it a lot.
Besides, it doesn't utilize WordPress media library for uploading files (which does all the dirty work behind the scene).
I'd suggest you take a look at a plugin like Meta Box. The plugin supports both ways to upload files:
input[type="file"]
, which uses a similar code above (see docs) andIt can help you reduce the effort writing and maintaining the code, especially when you want to create multiple uploads.
Disclaimer: I'm the author of Meta Box.
워드 프레스 관리자의 "페이지"아래에 새 페이지를 추가하고 여러 사용자 정의 필드를 추가했습니다.또한 페이지 편집기에 업로드 이미지 필드를 추가하고 싶습니다. 사용자 정의 필드를 통해이 작업을 수행 할 수있는 방법이 있습니까?
아니면이 능력이 필요한 경우 다른 방향으로 나아가 야합니까?