Nội dung
- shares
- Facebook Messenger
- Gmail
- Viber
- Skype
Các định dạng cho phép upload trong wordpress là:
Images
.jpg
.jpeg
.png
.gif
Documents
.pdf (Portable Document Format; Adobe Acrobat)
.doc, .docx (Microsoft Word Document)
.ppt, .pptx, .pps, .ppsx (Microsoft PowerPoint Presentation)
.odt (OpenDocument Text Document)
.xls, .xlsx (Microsoft Excel Document)
Audio
.mp3
.m4a
.ogg
.wav
Video
.mp4, .m4v (MPEG-4)
.mov (QuickTime)
.wmv (Windows Media Video)
.avi
.mpg
.ogv (Ogg)
.3gp (3GPP)
.3g2 (3GPP2)
Nếu bạn upload tệp với định dạng khác vd: .zip, bạn sẽ nhận được cảnh báo:
Sorry, this file type is not permitted for security reasons.
Allow All File Types
Cách đơn giản bạn thêm dòng sau vào wp-config.php
define('ALLOW_UNFILTERED_UPLOADS', true);
Allow Specific File Types
Chỉ cho phép một số định dạng files, sử dụng hook upload_mimes thêm đoạn sau vào functions.php
add_filter('upload_mimes', 'custom_upload_mimes'); function custom_upload_mimes ( $existing_mimes=array() ) { // add your extension to the array $existing_mimes['deb'] = 'application/x-deb'; // add as many as you like // removing existing file types unset( $existing_mimes['exe'] ); // add as many as you like // and return the new full result return $existing_mimes; }
Tham khảo trên net mình thấy có một số plugins mimes có thể làm được điều này như:
pjw mime config
Kết quả mình thử upload file video .flv đây, nó không chặn nữa rồi.
Nếu bạn thấy bài viết này hữu ích, hãy chia sẻ với bạn bè bằng cách nhấn nút chia sẻ ở bên dưới. Theo dõi chúng tôi trên Twitter và Facebook
- shares
- Facebook Messenger
- Gmail
- Viber
- Skype