Created
June 14, 2017 01:05
-
-
Save everaldomatias/520812d2fa65cd191c04b3fd25473985 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mobile_home_redirect(){ | |
if( wp_is_mobile() && is_front_page() ){ | |
include( get_stylesheet_directory() . '/index-mobile.php' ); | |
exit; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment