@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/



/* SVGアップロード */

// SVG upload allow (admin only)
add_filter('upload_mimes', function($mimes){
	if ( current_user_can('manage_options') ) {
		$mimes['svg']  = 'image/svg+xml';
		$mimes['svgz'] = 'image/svg+xml';
	}
	return $mimes;
});

add_filter('wp_check_filetype_and_ext', function($data, $file, $filename, $mimes){
	if ( current_user_can('manage_options') ) {
		$ext = strtolower(pathinfo($filename, PATHINFO_EXTENSION));
		if ( $ext === 'svg' || $ext === 'svgz' ) {
			$data['ext']  = $ext;
			$data['type'] = 'image/svg+xml';
		}
	}
	return $data;
}, 10, 4);

