Here is the current code I have placed in the header.php file on our Wordpress site:
<script type="text/javascript">
<!--
if (screen.width <= 700) {
window.location = "http://m.domain.com";
}
//-->
</script>
This issue is, this redirects all pages of our site to the landing page. I only want the 3 of our pages to be redirected. Can I redirect pages to our mobile version by their page id? (I want to avoid using a plugin for this.) If so, how would I write this?