-
Notifications
You must be signed in to change notification settings - Fork 0
/
_SDStudio____SCROLL_LAZY_LOADER.php
52 lines (46 loc) · 2.18 KB
/
_SDStudio____SCROLL_LAZY_LOADER.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* REDUX - Захват опций темы
*/
$redux = get_option( 'redux_sds_options_and_settings' );
include_once(ABSPATH . 'wp-includes/pluggable.php');
function SDStudio____SCROLL_LAZY_LOADER() {
require_once plugin_dir_path( __FILE__ ) . '_SDStudio___Yandex.php';
require_once plugin_dir_path( __FILE__ ) . '_SDStudio___Google_Tag.php';
?>
<script type="text/javascript">
/* SDStudio____SCROLL_LAZY_LOADER() */
console.log('START SDStudio____SCROLL_LAZY_LOADER()')
var fired = false;
window.addEventListener('scroll', () => {
if (fired === false) {
fired = true;
setTimeout(() => {
<?php
// =============================
// Здесь все эти тормознутые трекеры, чаты и прочая ересь,
// без которой жить не может отдел маркетинга, и которые
// дико бесят разработчиков, когда тот же маркетинг приходит
// с вопросом "почему сайт медленно грузится, нам гугл сказал"
// =============================
// Yandex Metric
if (function_exists('SDStudio_Add_Yandex_Metrik_If_User_Scroll')) {
echo SDStudio_Add_Yandex_Metrik_If_User_Scroll();
}
// Google Tag Manager Global Tag
if (function_exists('SDStudio_Add_GoogleTagManager_GlobalTag_If_User_Scroll')) {
echo SDStudio_Add_GoogleTagManager_GlobalTag_If_User_Scroll();
}
// =============================
?>
}, 1000)
}
});
console.log('END SDStudio____SCROLL_LAZY_LOADER()');
</script>
<?php
}
if ( !is_user_logged_in() ) {
add_action( 'wp_head', 'SDStudio____SCROLL_LAZY_LOADER' );
// add_action( 'admin_bar_menu', 'RunnerNoAdminSDStudio____SCROLL_LAZY_LOADER' );
}