Vyvgart
VYVGART is an FDA-approved treatment for adults with anti-AChR antibody positive generalized myasthenia gravis (gMG).
//************* TESTING *******************************************// // Display errors // error_reporting(E_ERROR | E_PARSE | E_COMPILE_ERROR); // ini_set('display_errors',1); // ini_set('display_startup_errors',1); // ini_set('log_errors',1); // ini_set('error_log',get_stylesheet_directory().'/debug.txt'); //************* BASIC WP ADDITIONS ********************************// // Allow SVG upload with extra security since an SVG is technically code // Allow SVG upload safely function allow_svg_upload($mimes){ $mimes['svg'] = 'image/svg+xml'; return $mimes; } add_filter('upload_mimes','allow_svg_upload'); // Fix WP filetype check for SVGs function fix_svg_filetype_check($data,$file,$filename,$mimes){ $ext = strtolower(pathinfo($filename,PATHINFO_EXTENSION)); if($ext === 'svg'): $data['ext'] = 'svg'; $data['type'] = 'image/svg+xml'; endif; return $data; } add_filter('wp_check_filetype_and_ext','fix_svg_filetype_check',10,4); // Sanitize SVGs safely before saving function sanitize_svg($file){ $ext = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION)); if($ext !== 'svg') return $file; if(!file_exists($file['tmp_name'])) return $file; libxml_use_internal_errors(true); $svg_content = file_get_contents($file['tmp_name']); if(!$svg_content) return $file; $dom = new DOMDocument(); try{ $dom->loadXML($svg_content, LIBXML_NONET | LIBXML_NOERROR | LIBXML_NOWARNING); // Remove
VYVGART is an FDA-approved treatment for adults with anti-AChR antibody positive generalized myasthenia gravis (gMG).
VYVGART is given in treatment cycles of a 1-hour infusion each week for 4 weeks (4 infusions total).
During each infusion a healthcare professional will:
Your neurologist and insurance company will work together to determine where you will receive your infusions. It will most likely be at your neurologist’s office or an infusion center.
VYVGART was safe in treating most clinical trial participants. In the clinical trial, the following side effects were reported in at least 5% of participants on VYVGART and more frequently than in participants on placebo.
Most infections in participants on VYVGART were mild to moderate. Additionally, more patients on VYVGART vs placebo had blood side effects that were mild to moderate.