Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Created April 13, 2016 12:37
Show Gist options
  • Save frankschrijvers/366d4c8a44beb4accd145d77c866c25f to your computer and use it in GitHub Desktop.
Save frankschrijvers/366d4c8a44beb4accd145d77c866c25f to your computer and use it in GitHub Desktop.
Redirect homepage on mobile
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Redirect homepage on mobile
add_action( 'wp_head', 'wps_params', 10 );
function wps_params() {
?>
<script>
if (window.location.pathname == '/' && jQuery(window).width() <= 480) {
window.location = "/webshop/";
}
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment