Hi there, Everyone:
I peeked at my analytics last night and was delighted to see how much my bounce rate improved ever since I move my article pages from static html to wordpress.
Then I realized the bounce rate improved WAY TOO MUCH. Like now, most of my wordpress pages have a bounce rate of 0%. The HIGHEST bounce rate for any wordpress pages is under 7%
Does anybody have any suggestions on how to trouble shoot this?
I have the GA code in the head element of my wordpress pages. I think that it is suggest to have it as the LAST thing in the head element, right before the closing head tag, but unfortunately some other scripts are located below it.
Here is my code:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1234567-8']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>