/*
Theme Name:   Zingbox child theme
Description:  Write here a brief description about your child-theme
Author:       Themesflat
Author URL:   https://zingboxwp.demothemesflat.com/
Template:     zingbox
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  zingbox-child-theme
*/

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

