Cách tải svg lên media (ok)
https://huydevtheme.com/khac-phuc-loi-khong-upload-duoc-file-dinh-dang-svg-tren-wordpress/
Khắc phục lỗi không Upload được File định dạng SVG trên WordPress
// Add SVG to allowed file uploads
function add_file_types_to_uploads($file_types){
$new_filetypes = array();
$new_filetypes['svg'] = 'image/svg';
$file_types = array_merge($file_types, $new_filetypes );
return $file_types;
}
add_action('upload_mimes', 'add_file_types_to_uploads');define( 'ALLOW_UNFILTERED_UPLOADS', true );PreviousCách lấy fontawesome svg lên website (ok)NextPhân trang cho comment bình luận chi tiết bài viết single.php
Last updated
