1.functions.phpに下記を記入
function is_line() {
$is_line = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'Line');
if ($is_line) {
return true;
} else {
return false;
}
}
スポンサーリンク
2.条件分岐は以下の記述
<?php if ($is_IE || is_line()):?>
//ここにラインアプリ[webview]のみで表示
<?php else: ?>
//それ以外
<?php endif; ?>
参考記事
https://kosaeru.net/memo/wordpress_line-browser_view/
https://qiita.com/yumayamada1029/items/e5f3eb6e1e05264b2714
https://zenn.dev/kecy/articles/f51851e42c4243