Google PageSpeed Insights flags browser caching of Google Analytics:
Leverage browser caching
Set up a proxy in your Nginx configuration file to address this issue.
| <?php | |
| /* | |
| Plugin Name: R Debug | |
| Description: Set of dump helpers for debug. | |
| Author: Andrey "Rarst" Savchenko | |
| Author URI: http://www.rarst.net/ | |
| License: MIT | |
| */ | |
| /** |
| <?php | |
| // add ie conditional html5 shim to header | |
| function _s_add_ie_html5_shim () { | |
| echo '<!--[if lt IE 9]>'; | |
| echo '<script src="' . get_template_directory_uri() . '/js/html5.js"></script>'; | |
| echo '<![endif]-->'; | |
| } | |
| add_action('wp_head', '_s_add_ie_html5_shim'); |