极致CMS如何获取当前页面的移动端网址
额尔敦 @ 2022-07-17 ✎ 21:21 ❤ 2127
论坛里有朋友在问,PC端页面对应的WAP地址,当时我也贴出来了。
{php $a = str_replace("www","m","$jz[url]"); /} <meta name="mobile-agent" content="format=html5; url={$a}">
说没有生效的,基本上是没有动脑,不会举一反三的。
我是测试过才贴上去的。
上面的代码只是用于详情页。
首页相对应的移动端网址:
{php $a = str_replace("www","m","$webconf[domain]"); /} <meta name="mobile-agent" content="format=html5; url={$a}">
列表页相对应的移动端网址:
{php $a = str_replace("www","m","$type[url]"); /} <meta name="mobile-agent" content="format=html5; url={$a}">
还有一个更简单的:
<meta name="mobile-agent" content="format=html5; url={fun str_replace('www','m',current_url())}">
【打印本文】