Fix google adsense làm web chậm!

javascript,google,performance

Khắc phục google adsense load nhanh trong wordpress

Chúng tôi đã nghĩ ra một cách để trì hoãn việc tải tập lệnh này để bắt đầu tải nó 5 giây sau khi trang được tải đầy đủ. Đây là một mẹo rất hữu ích cho các trang web SEO hay trang web được sử dụng wordpress để xây dựng. Vì đây là bài viết về tips and tricks nên chỉ code không giải thích, ngoài ra chúng tôi có bài viết "Tại sao google analytics khiến web chậm và cách khắc phục?" đã nói rõ rất nhiều lý do.

Mặc định khi tích hợp

<script async src = "// pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"> </script>
<ins class = "adsbygoogle"
style = "display: inline-block; width: 728px; height: 90px"
data-ad-client = "ca-pub- UNIQUE_ACCOUNT # "
data-ad-slot = " UNIQUE_AD # "> </ins>
<script>
(adsbygoogle = window.adsbygoogle || []). push ({});
</script>

Sau 5s hay cho chạy google ads

Triển khai điều này giúp website của bạn chạy nhanh hơn trước khi sử dụng:

<ins class = "adsbygoogle"
style = "display: inline-block; width: 728px; height: 90px"
data-ad-client = "ca-pub- UNIQUE_ACCOUNT # "
data-ad-slot = " UNIQUE_AD # "> </ins>

<script type = 'text / javascript'>
(chức năng() {
var done = false;
var script = document.createElement ('script');
script.async = true;
script.type = 'text / javascript';
script.src = '//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js';

var createScript = setTimeout (
chức năng(){
document.getElementsByTagName ('HEAD'). item (0) .appendChild (script);
}, 5000
);

script.onreadystatechange = script.onload = function (e) {
if (! done && (! this.readyState || this.readyState == 'load' || this.readyState == 'complete')) {
(adsbygoogle = window.adsbygoogle || []). push ({});
}
};
})();
</script>

Có thể bạn đã miss một số snippets code

javascript rand

The Math.random() function returns a floating-point, pseudo-random number in the range 0 to less than 1

Lodash sort - Test performance with native js

Lodash sort - Bài viết ngắn gọn muốn đưa ra con số sau khi test về Lodash và Native js. Đây chỉ là check trên phương diện cá nhân...

Get user info from access token Google

using async/await to catch errors

void 0 js

The void operator evaluates the given expression and then returns undefined.