Heim  >  Artikel  >  Backend-Entwicklung  >  wordpress支持上传图片怎么实现?

wordpress支持上传图片怎么实现?

WBOY
WBOYOriginal
2016-07-25 08:52:04939Durchsuche
本文介绍了wordpress只支持上传图片的实现方法,使用自定义函数实现图片上传功能,不允许其它文件上传,需要的朋友参考下。

wordpress支持上传图片

在添加文章时,wordpress支持添加媒体,包括图片、视频、word和excel等各种多媒体文件。 获取wordpress支持上传的所有文件类型,可以在当前主题的functions.php中插入以下php代码。 然后,打开博客首页,查看网页源代码,即可看到一个完整的支持列表(bbs.it-home.org 脚本学堂): print_r(wp_get_mime_types());

如何让wordpress只支持上传图片文件,其他文件一概拒绝上传。

在当前主题的functions.php中插入:

// add the filter
add_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; 
}

即可实现只支持上传图片,拒绝其它文件上传了。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn