Remove New Relic JavaScript from WordPress AMP Pages

Having problems with New Relic scripts invalidating your WordPress AMP pages? Add this to your functions.php file: /** Disable New Relic Scripts in AMP Pages */ function disable_newrelic_for_amp_pages() { if ( function_exists( ‘is_amp_endpoint’ ) && is_amp_endpoint() ) { if (extension_loaded(‘newrelic’)) { newrelic_disable_autorum( true ); } } } add_action(‘init’, ‘disable_newrelic_for_amp_pages’); We put this into a plugin […]