init commit

This commit is contained in:
zino
2021-02-16 00:05:49 +01:00
parent 77ab0f7020
commit a4d4e1f583
41 changed files with 6313 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
?>
<?php
add_filter( 'wp_enqueue_scripts', 'my_redirect_mobile' );
function my_redirect_mobile() {
if(page_id() != 2540) {
if (wp_is_mobile()) {
if(!isset($_GET["no-mobile-redirect"]))
redirect('http://zinomedia.de/terminsnipe/get-app/');
}
}
}