Tracking RSS subscribers in Google Analytics

The best way is to track this in Feedburner – that will tell you how many “subscribers” you may have at any time. If you want to track how many people click on your RSS feed link on your WordPress site you can tag the link with some Google Analytics tracking code. See http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55578 for … Read more

Google Analytics post views in WordPress? [closed]

Please check out the WordPress Post Analytics Plugin that we (WisdmLabs) have created. http://wordpress.org/extend/plugins/wordpress-post-analytics/ This is available on the WordPress plugin repository as a free download. We link your Google Analytics account to the plugin and pull data from the Analytics backend to showcase stats right inside any post. You have a choice of using … Read more

Does wordpress insert automatic google analytic?

The reason is you are using HostGator and enable the feature is Google Analytics Integration, by enable this one, HostGator will automatically add this snipped of code into your main website and all of it sub or add-on domain: <script src=”https://wordpress.stackexchange.com/google_analytics_auto.js”></script></head> I my self also faced with this issue, my main website is http://nguyenhuutrong.com and … Read more

How to detect if a Shortcode is being called on a page?

I have sometimes wondered the same thing – whether wp maybe checked on save and kept a register etc I had a quick look at the code, and it seems not. There is however a global $shortcode_tags, and wp has this function function get_shortcode_regex() { global $shortcode_tags; $tagnames = array_keys($shortcode_tags); $tagregexp = join( ‘|’, array_map(‘preg_quote’, … Read more