Stelara (SQ)
STELARA® is a prescription medicine used to treat moderate to severe psoriasis in adults and children.
//************* 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
STELARA® is a prescription medicine used to treat moderate to severe psoriasis in adults and children.
Start with a one-time IV infusion
STELARA® treatment starts with a one-time intravenous (IV) infusion through a vein in the arm that provides the amount of medication based on your body weight and is administered by a medical professional in a comfortable setting. It takes at least 1 hour to receive the full dose of medicine.
Keep going with maintenance injections
After the one-time IV infusion, you will receive STELARA® as an injection under the skin (subcutaneous injection) every 8 weeks. There are 6 injections during the first year of treatment. Your doctor can administer at his or her office, or your doctor will decide if you or a caregiver may give your injections of STELARA® at home.
STELARA® is intended for use under the guidance and supervision of your doctor. If your doctor decides that you or a caregiver may give your injections of STELARA® at home, you should receive training on the right way to prepare and inject STELARA®.
STELARA® is a prescription medicine that affects your immune system. STELARA® can increase your chance of having serious side effects including:
These are not all of the possible side effects with STELARA®. Tell your doctor about any side effect that you experience. Ask your doctor or pharmacist for more information.