WordPress Support Upload image How to implement?

Source: Internet
Author: User
This article describes the WordPress only support upload images of the real Now the method, using the custom function to implement the image upload function, do not allow other files to upload, the need for a friend reference. !--ad-->!--ad--end-->

WordPress support uploading pictures

When adding an article, WordPress supports adding media, including pictures, videos, Various multimedia files such as Word and Excel. Get all the file types that WordPress supports to upload, and insert the following PHP code in the functions.php of the current topic. Then, open the blog home page, view the source code, you can see a complete support list (bbs.it-home.org Script Academy): Print_r (Wp_get_mime_types ());

How to let WordPress only support uploading image files, other files are refused to upload. The

is inserted in the functions.php of the current topic:

//Add the Filteradd_filter (' Upload_ Mimes ', ' custom_upload_mimes '); function custom_upload_mimes ($existing _mimes=array ()) {$existing _mimes = array (' Jpg| Jpeg|jpe ' = ' image/jpeg ', ' gif ' = ' image/gif ', ' png ' = ' image/png ', ' bmp ' = ' image/bmp ', ' tif| '  Tiff ' = ' image/tiff ', ' ico ' = ' image/x-icon '); return $existing _mimes; The 

can only support uploading pictures, rejecting other file uploads.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.