Merhaba kod işinize yarayacaktır
// Papatyam Soft App Yönlendirme
function redirect_mobile_users() {
// Kullanıcı cihazını algıla
$user_agent = $_SERVER['HTTP_USER_AGENT'];
// Android cihazlar için yönlendirme
if (stripos($user_agent, 'Android') !== false) {
// Android uygulama linki
wp_redirect('https://play.google.com/store/apps/details?id=com.example.yourapp');
exit;
}
// iOS cihazlar için yönlendirme
if (stripos($user_agent, 'iPhone') !== false || stripos($user_agent, 'iPad') !== false) {
// iOS uygulama linki
wp_redirect('https://apps.apple.com/app/id1234567890');
exit;
}
}
// Yönlendirme işlevini sayfanın başında çalıştır
add_action('template_redirect', 'redirect_mobile_users');