Merhabalar,
Wordpress tabanlı web sitesini sadece mobile açmak için nasıl bir kod girmem gerekir.
veya apk uygulamasından sadece açılmasını nasıl sağlarız. ?
Siteyi Web Browser den girişe kapama
8
●352
- 26-08-2019, 14:40:14
- 26-08-2019, 14:49:16Bu sınıfı kullanabilirsiniz.islamuner34 adlı üyeden alıntı: mesajı görüntüle
http://mobiledetect.net/
wordpress index.php dosyanıza dahil edin bunu
// Include and instantiate the class.
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
// Any mobile device (phones or tablets).
if ( $detect->isMobile() ) {
BURAYA index.php DOSYASI İÇERİSİNDE YER ALAN KODLAR EKLENECEK
}else{
echo "Bilgisayardan giremezsin!";
} - 26-08-2019, 14:54:17500 Hatası aldım.celalyesil adlı üyeden alıntı: mesajı görüntüle
<?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require( dirname( __FILE__ ) . '/wp-blog-header.php' );
şu kodlar php de var. - 26-08-2019, 14:58:10Bu dosyayı indirip ana dizine attınızmı?islamuner34 adlı üyeden alıntı: mesajı görüntüle
Mobile_Detect.php - 28-08-2019, 09:41:36dosyanın en başınaislamuner34 adlı üyeden alıntı: mesajı görüntüle
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
?>
bunu yazarak hatayı görebiliriz. Sonucu yazarsanız yardımcı olmaya çalışayım. - 28-08-2019, 13:51:05teşekkür ederim yaptım.celalyesil adlı üyeden alıntı: mesajı görüntüle