google analytics ถือว่าเป็นมือในการเก็บสถิติบล็อกที่ดีมาก มันถูกพัฒนาขึ้นโดย google การเข้าถึงเวบ google analytics ก็แค่เรามีบัญชีอีเมล์ของ google หรือ gmail เท่านั้นแหละครับ แค่นี้เราก็สามารถใช้งานมันได้ฟรีแล้ว เราสามารถเปิดเวบได้ ที่
http://www.google.com/analytics/หลังจากที่เข้าไปใช้งานแล้วก็ทำการสร้าง account เวบไซต์ที่เราต้องการเก็บข้อมูลทางสถิติขึ้น เมื่อสร้างเสร็จแล้วเราจะได้รหัสประจำ account เช่น UA-1234567-8
จะใส่ google analytics โค้ดลงใน wordpressอย่างไร? 1.ก่อนอื่นก็ต้องมีรหัส account ของ google analytics ก่อน อย่างตัวอย่างก่อนหน้านี้ เราได้ google analytics account เป็น เช่น UA-1234567-8
2.เปิดไฟล์ function.php ขึ้นแล้วแทรกโค้ดด้านล่างลงไปในไฟล์
function add_google_analytics() {?><script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-1234567-8"); pageTracker._trackPageview(); } catch(err) {}</script><?php}add_action('wp_footer', 'add_google_analytics');
อย่าลืมแก้ UA-1234567-8 เป็นรหัสเวบของคุณ
credit:
http://abxnet.com/%E0%B9%83%E0%B8%AA%E0%B9%88-google-analytics-%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94%E0%B8%A5%E0%B8%87%E0%B9%83%E0%B8%99-wordpress/