Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created March 24, 2017 14:40
Show Gist options
  • Save GeoffEW/dff981933c950aebc3045b827eddc101 to your computer and use it in GitHub Desktop.
Save GeoffEW/dff981933c950aebc3045b827eddc101 to your computer and use it in GitHub Desktop.
Redirect Mobile Users to List View
/*
* 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