Hi there I am doing research on google anlytics. I have got the following code from google analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XXXXX']);
_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);
})();
It has only _trackPageview
parameter. Will the above code will automatically track the keyword whether it is organic or paid from any data source or campaign Or I need to send some custom parameter for it?