Created
March 24, 2017 14:40
-
-
Save GeoffEW/dff981933c950aebc3045b827eddc101 to your computer and use it in GitHub Desktop.
Redirect Mobile Users to List View
This file contains hidden or 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
/* | |
* The Events Calendar - Redirect Mobile Users to List View | |
*/ | |
add_action( 'template_redirect', 'tec_mobile_template_redirect' ); | |
function tec_mobile_template_redirect() { | |
if( tribe_is_week() && wp_is_mobile() ) { | |
wp_redirect( tribe_get_listview_link() ); | |
exit(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment