Rizedio adlı üyeden alıntı: mesajı görüntüle
hocam android ve ios mağazadaki uygulamaları indirtmek için sitede uyarı gibi birşey istemiştim ama bu kodu tam anlamayamadım


Kodu temanızın functions.php en altta ekleyin resimdeki örnekte ki gibi bir sonuç elde edersiniz.

function giris_kontrol()
{
if (wp_is_mobile()) {
?>
<style>
.alert {
  padding: 20px;
  background-color: #60c667;
  color: white;
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn:hover {
  color: black;
}
.link{
  color:white;
}
</style>
<div class="alert">
  <span class="closebtn" onclick="this.parentElement.style.display='none';">&times;</span>  
<a class="link" href="androiduygulamaurl">Android Uygulama İndir</a>
<a class="link" href="iosuygulamaurl">IOS Uygulama İndir</a>
</div>
<?php
}
}
add_filter('wp_head', 'giris_kontrol',99);