Hi There,
Thanks for writing in! Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Then paste the code below on your child theme’s functions.php file.
function google_analytics_footer_output() {
/*Place your Google Analytics Code here*/
}
add_action( 'wp_footer', 'google_analytics_footer_output', 30 ); ?>
Hope it helps, Cheers!