php 允许将SVG文件上载到媒体库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 允许将SVG文件上载到媒体库相关的知识,希望对你有一定的参考价值。

// Allow SVG files to be uploaded to the media library
add_filter( 'wp_check_filetype_and_ext', function($data, $file, $filename, $mimes) {

  global $wp_version;
  if ( $wp_version !== '4.7.1' ) {
     return $data;
  }

  $filetype = wp_check_filetype( $filename, $mimes );

  return [
      'ext'             => $filetype['ext'],
      'type'            => $filetype['type'],
      'proper_filename' => $data['proper_filename']
  ];

}, 10, 4 );

function cc_mime_types( $mimes ){
  $mimes['svg'] = 'image/svg+xml';
  return $mimes;
}
add_filter( 'upload_mimes', 'cc_mime_types' );

function fix_svg() {
  echo '<style type="text/css">
        .attachment-266x266, .thumbnail img {
             width: 100% !important;
             height: auto !important;
        }
        </style>';
}
add_action( 'admin_head', 'fix_svg' );

以上是关于php 允许将SVG文件上载到媒体库的主要内容,如果未能解决你的问题,请参考以下文章

php 将SVG添加到WP媒体中

php 将文件上载到AWS S3

从Google Cloud Firestore上载和下载文件

php 将重力表单文件上载到高级自定义字段WordPress中的图像/文件字段

如何自动将AI Studio中的GIF文件上载到CSDN?

PHP - 使用CURL将图像文件上载到其他域