// Before VC Init add_action( 'vc_before_init', 'vc_before_init_actions' ); function vc_before_init_actions() { // Require new custom Element } // Link components function kea_init_theme() { require( get_stylesheet_directory() . '/inc/components/employees/director.php'); require( get_stylesheet_directory() . '/inc/components/customMailer/director.php'); } add_action( 'init', 'kea_init_theme' ); // Add SVG acceptance function add_file_types_to_uploads($file_types){ $new_filetypes = array(); $new_filetypes['svg'] = 'image/svg+xml'; $file_types = array_merge($file_types, $new_filetypes ); return $file_types; } add_action('upload_mimes', 'add_file_types_to_uploads'); ?>